Skip to content

Commit 14173dd

Browse files
author
patrik
committed
Rebased from master
2 parents 6e35333 + 2f3f748 commit 14173dd

5 files changed

Lines changed: 245 additions & 335 deletions

File tree

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ These tools work for the following environments:
88
- [IBM **Cloud** Public](https://www.ibm.com/cloud-computing/)
99
- [IBM **Cloud** Private](https://www.ibm.com/cloud-computing/products/ibm-cloud-private/)
1010
- [IBM **Cloud** Dedicated](https://www.ibm.com/cloud-computing/bluemix/dedicated)
11-
- [IBM MicroService Builder](https://developer.ibm.com/microservice-builder/)
11+
- [IBM Microclimate](https://www.ibm.com/us-en/marketplace/microclimate)
1212

1313
If you run into any issues, please let us know on the [IBM Cloud Tech Slack :: #developer-tools](https://slack-invite-ibm-cloud-tech.mybluemix.net/) or file an issue on our [GitHub repo](https://github.com/IBM-Cloud/ibm-cloud-developer-tools).
1414

@@ -19,13 +19,12 @@ If you run into any issues, please let us know on the [IBM Cloud Tech Slack :: #
1919
The following command will install the IBM Cloud Developer Tools in a single invocation. Open up a terminal and run the following command:
2020

2121
```
22-
$ curl -sL http://ibm.biz/idt-installer | bash
22+
$ curl -sL https://ibm.biz/idt-installer | bash
2323
```
2424

25-
Once complete, there will be three shortcuts defined to access the IBM Cloud Developer Tools:
26-
- `ibmcloud dev` : Main command line tool
27-
- `ibmcloud dev update` : Update your IBM Cloud Developer Tools to the latest versions
28-
- `ibmcloud dev uninstall` : Uninstall the IBM Cloud Developer Tools
25+
Once complete, there will be a shortcut defined to access the IBM Cloud CLI:
26+
- `ic` : Shortcut for the 'ibmcloud' command
27+
2928

3029
Access the [platform-specific readme](./linux-installer/README.md) for additional details.
3130

@@ -38,7 +37,7 @@ To install the IBM Cloud Developer Tools CLI on Windows 10 or newer:
3837
1. Open Windows PowerShell by right-clicking and select "Run as Administrator".
3938
2. Run this command:
4039
```
41-
Set-ExecutionPolicy Unrestricted; iex(New-Object Net.WebClient).DownloadString('http://ibm.biz/idt-win-installer')
40+
Set-ExecutionPolicy Unrestricted; iex(New-Object Net.WebClient).DownloadString('https://ibm.biz/idt-win-installer')
4241
```
4342

4443
Access the [Windows-specific readme](./windows-installer/README.md) for additional details.

linux-installer/README.md

Lines changed: 7 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ $ curl -sL https://ibm.biz/idt-installer | bash
3737

3838
Once complete, there will be three added shortcuts defined to access the IDT:
3939
- `ibmcloud dev` : Main command line tool for IBM cloud native development
40-
- `ibmcloud dev update` : Update your IDT environment to the latest versions
41-
- `ibmcloud dev uninstall` : Uninstall the IBM Developer Tools
40+
- `ibmcloud update` : Update your IBM Cloud CLI to the latest version
41+
- `ibmcloud plugin update` : Update IBM Cloud plugins to the latest versions
4242

4343

4444
### Debugging
@@ -49,44 +49,21 @@ If you have any issues with the installer, try running with the `--trace` argume
4949
curl -sL https://ibm.biz/idt-installer | bash -s -- --trace
5050
```
5151

52-
If updating an existing IDT installation, you can run the following:
52+
If you wish to update the IBM Cloud Dev Plugin, run:
5353
```
54-
idt update --trace
54+
ibmcloud plugin update dev
5555
```
5656

5757

5858
## Updating
5959

60-
If you wish to update the IBM Developer Tools CLI, run `ibmcloud dev update`. There is also a `--force` argument that will force update to all dependencies too.
60+
If you wish to update the IBM Cloud Dev Plugin, run `ibmcloud plugin update dev`.
6161

6262
Syntax:
6363
```
64-
ibmcloud dev update [--force] [--trace]
64+
ibmcloud plugin update dev
6565
```
6666

67-
This command is simply an alias defined during initial install that runs the installer shown here:
68-
69-
```
70-
$ curl -sL https://ibm.biz/idt-installer | bash -c -- [--force]
71-
```
72-
73-
74-
## Uninstall
75-
76-
If you wish to remove the IBM Developer Tools CLI, run `ibmcloud dev uninstall`.
77-
78-
Syntax:
79-
```
80-
ibmcloud dev uninstall [--trace]
81-
```
82-
83-
This command is simply an alias defined during install that runs the following:
84-
85-
```
86-
$ curl -sL https://ibm.biz/idt-installer | bash -c -- uninstall
87-
```
88-
89-
9067

9168
## Pre-Requisites
9269

@@ -103,7 +80,6 @@ Usage: idt-installer [<args>]
10380
10481
Where <args> is:
10582
install | update [Default] Perform full install (or update) of all needed CLIs and Plugins
106-
uninstall Uninstall full IBM Cloud CLI env, including 'ibmcloud', and plugins
10783
help | -h | -? Show this help
10884
--force Force updates of dependencies and other settings during update
10985
--trace Eanble verbose tracing of all activity
@@ -114,12 +90,8 @@ If "install" (or no action provided), a full CLI installation (or update) will o
11490
2. Install latest IBM Cloud 'ibmcloud' CLI
11591
3. Install all required plugins
11692
4. Defines aliases to improve useability
117-
- idt : Shortcut for normal "ibmcloud dev" command
118-
- idt update : Runs this installer checking for and installing any updates
119-
- idt uninstall : Uninstalls IDT, including the 'ibmcloud cli' and all plugins
93+
- ic : Shortcut for "ibmcloud" command
12094
121-
If "uninstall", the IBM Cloud CLI and plugins are removed from the system, including personal metadata.
122-
Note: Pre-req CLIs listed above are NOT uninstalled.
12395
12496
Chat with us on Slack: https://slack-invite-ibm-cloud-tech.mybluemix.net/
12597
Submit any issues to : https://github.com/IBM-Cloud/ibm-cloud-developer-tools/issues

0 commit comments

Comments
 (0)