Skip to content

Commit fbee477

Browse files
authored
Merge pull request #2 from reactioncommerce/fix-aldeed-linux-shebang
fix: use Ubuntu-compatible Node shebang
2 parents 6190953 + a6ff238 commit fbee477

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@
6666
"access": "public"
6767
},
6868
"release": {
69-
"branches": ["trunk"]
69+
"branches": [
70+
"trunk"
71+
]
7072
}
7173
}

src/cli.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env node --no-warnings --experimental-modules --experimental-json-modules
1+
#!/bin/sh
2+
':' //; exec node --no-warnings --experimental-modules --experimental-json-modules "$0" "$@"
23

34
const log = require("./util/log.js");
45

0 commit comments

Comments
 (0)