Skip to content

Commit 48d4439

Browse files
Karl BishopKarl Bishop
authored andcommitted
Merges
2 parents f626cbd + ca0faf8 commit 48d4439

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To install the IBM Cloud Developer Tools CLI on Windows 10 or newer:
5252
Set-ExecutionPolicy Unrestricted; iex(New-Object Net.WebClient).DownloadString('http://ibm.biz/idt-win-installer')
5353
```
5454

55-
Access the [Widnows-specific readme](./windows-installer/README.md) for additional details.
55+
Access the [Windows-specific readme](./windows-installer/README.md) for additional details.
5656

5757

5858
## 3rd Party IDE Extensions

linux-installer/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ This script performs an installation of the IBM Developer Tools CLI environment.
2323

2424

2525
## Installation
26+
Before running the installation script, you should set this environment variable if you plan to deploy to Kubernetes so that the version of Helm that is installed is compatible with the Helm server version.
27+
28+
```
29+
export DESIRED_VERSION=v2.4.2
30+
```
31+
2632
To install the IBM Developer Tools CLI, run the following command:
2733

2834
```
@@ -130,4 +136,4 @@ export IDT_INSTALL_BMX_REPO_NAME="internal"
130136
export IDT_INSTALL_BMX_REPO_URL="https://plugins.ng.bluemix.net"
131137
```
132138

133-
If you need assistance on the proper values, just ask in any of the IBM internal slack channels.
139+
If you need assistance on the proper values, just ask in any of the IBM internal slack channels.

linux-installer/idt-installer

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright (c) 2017, International Business Machines. All Rights Reserved.
88
#------------------------------------------------------------------------------
99

10+
<<<<<<< HEAD
1011
VERSION="1.1.0"
1112
PROG="IBM Cloud Developer Tools - Installer"
1213
INSTALLER_URL="https://ibm.biz/idt-installer"
@@ -190,7 +191,7 @@ function install_deps {
190191
[[ -z "$(which brew)" ]] && USEBREW=false
191192

192193
# Install curl if not already installed.
193-
if ! $(which curl >/dev/null 2&>1); then
194+
if ! $(which curl >/dev/null 2>&1); then
194195
if [ "$PLATFORM" = Linux ]; then
195196
$SUDO apt-get -y update
196197
$SUDO apt-get -y install curl

windows-installer/idt-win-installer.ps1

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# Installs IBM Developer Bluemix CLI plugin and all dependencies.
33
# VERSION="0.8"
44

5+
# Check for Windows 10
6+
if ([System.Environment]::OSVersion.Version.Major -ne 10)
7+
{
8+
echo "This installer requires Windows 10."
9+
exit
10+
}
11+
512
# Check for 64-bit Platform - Dev and Helm do not have 32-bit versions.
613
if ([Environment]::Is64BitProcess -ne [Environment]::Is64BitOperatingSystem)
714
{
@@ -119,4 +126,4 @@ if( $EXT_PLUGINS.contains("sdk-gen")) {
119126
$restart = Read-Host "A system restart is required. Would you like to restart now (y/n)? (default is n)"
120127
if($restart -eq "y" -Or $restart -eq "yes") {
121128
Restart-Computer
122-
}
129+
}

0 commit comments

Comments
 (0)