Skip to content

Commit 2b80c2d

Browse files
ErikDeSmedtShahanaFarooqui
authored andcommitted
Fixed npm start on default shell (debian)
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 ```
1 parent b3abf3f commit 2b80c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "c-lightning REST API suite",
55
"main": "cl-rest.js",
66
"scripts": {
7-
"start": "SET NODE_ENV=dev && node cl-rest.js",
7+
"start": "set NODE_ENV=dev && node cl-rest.js",
88
"watch": "NODE_ENV=development nodemon cl-rest.js",
99
"test": "mocha --exit"
1010
},

0 commit comments

Comments
 (0)