Skip to content

Commit 660a661

Browse files
Merge pull request #288 from ChrisPark89/dev
Changed the installation guide
2 parents d3814e0 + fbe5e17 commit 660a661

File tree

2 files changed

+24
-22
lines changed

2 files changed

+24
-22
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@ To save you having to type the above for every commit, Git can add the `Signed-o
9393

9494
If you haven't signed each commit, then the pull request will fail to pass all checks.
9595

96+
### Build and install the cics-deploy plugin
97+
```console
98+
git clone https://github.com/IBM/zowe-cli-cics-deploy-plugin
99+
cd zowe-cli-cics-deploy-plugin
100+
npm install
101+
npm run build
102+
zowe plugins install .
103+
```
96104

97105
## Developing Zowe CLI plug-ins
98106

docs/pages/cdp/cdp-Installing.md

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,19 @@ toc: false
2121
2. Install [Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example, to install using npm:
2222

2323
```console
24-
sudo npm install -g @brightside/core
24+
npm install -g @brightside/core
2525
```
2626

27-
3. Build and install the cics-deploy plug-in as described in [Setting up your development environment](https://github.com/IBM/zowe-cli-cics-deploy-plugin/blob/master/docs-internal/tutorials/Setup.md). For example:
27+
3. Install the cics plugin:
2828

2929
```console
30-
mkdir ~/cics-deploy
31-
cd ~/cics-deploy
32-
rm -Rf *
33-
git clone https://github.com/IBM/zowe-cli-cics-deploy-plugin
34-
cd zowe-cli-cics-deploy-plugin
35-
npm install
36-
npm run build
37-
zowe plugins install .
30+
zowe plugins install @brightside/cics@lts-incremental
3831
```
3932

40-
4. Install the cics plugin:
33+
4. Install the cics-deploy plugin:
4134

4235
```console
43-
zowe plugins install @brightside/cics
36+
zowe plugins install zowe-cli-cics-deploy-plugin
4437
```
4538

4639
5. Verify the plug-ins are installed:
@@ -49,15 +42,16 @@ toc: false
4942
zowe plugins list
5043
```
5144

52-
Displays a list of the installed plug-ins:
45+
Displays a list of the installed plugins:
5346

54-
<pre class="messageText">
55-
-- pluginName: zowe-cli-cics-deploy-plugin
56-
-- package: zowe-cli-cics-deploy-plugin
57-
-- version: 0.5.0
58-
-- registry: https://eu.artifactory.swg-devops.com/artifactory/api/npm/cicsts-npm-virtual
47+
<pre class="messageText">
48+
Installed plugins:
5949

60-
-- pluginName: @zowe/cics
61-
-- package: @zowe/cics
62-
-- version: 2.0.1
63-
-- registry: https://eu.artifactory.swg-devops.com/artifactory/api/npm/cicsts-npm-virtual</pre>
50+
-- pluginName: @brightside/cics
51+
-- package: @brightside/cics@lts-incremental
52+
-- version: 1.1.1
53+
-- registry: https://registry.npmjs.org/<br>
54+
-- pluginName: zowe-cli-cics-deploy-plugin
55+
-- package: zowe-cli-cics-deploy-plugin
56+
-- version: 0.5.0
57+
-- registry: https://registry.npmjs.org/ </pre>

0 commit comments

Comments
 (0)