Skip to content

Commit

Permalink
Fixed npm start on default shell (debian)
Browse files Browse the repository at this point in the history
I have renamed SET to set in the `package.json`-file.

I'm an ubuntu user and the `npm start` script doesn't work for me.
It yields the following error.

```
> [email protected] start
> SET NODE_ENV=dev && node cl-rest.js

sh: 1: SET: not found
```
  • Loading branch information
ErikDeSmedt authored and ShahanaFarooqui committed Sep 27, 2023
1 parent b3abf3f commit 2b80c2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "c-lightning REST API suite",
"main": "cl-rest.js",
"scripts": {
"start": "SET NODE_ENV=dev && node cl-rest.js",
"start": "set NODE_ENV=dev && node cl-rest.js",
"watch": "NODE_ENV=development nodemon cl-rest.js",
"test": "mocha --exit"
},
Expand Down

0 comments on commit 2b80c2d

Please sign in to comment.