Skip to content

Commit 793d107

Browse files
authored
TA-3920: Fix global install of Content CLI (#228)
1 parent c1768d7 commit 793d107

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ run `node content-cli.js` in the generated `dist` folder.
9292

9393
If we want to use a specific local build of the tool globally, we can do this by:
9494
- Move to the root directory of the project.
95+
- Execute `cd dist`, to move to the `dist` directory.
9596
- Execute the `npm link` command.
9697
This will create a symbolic link in the global `node_modules` directory, allowing you to run the CLI from anywhere on your machine.
9798

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@celonis/content-cli",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "CLI Tool to help manage content in Celonis Platform",
55
"main": "content-cli.js",
66
"bin": {
7-
"content-cli": "./dist/content-cli.js"
7+
"content-cli": "./content-cli.js"
88
},
99
"author": "Celonis SE",
1010
"license": "MIT",

0 commit comments

Comments
 (0)