Skip to content

Commit

Permalink
v2.2.0, add #!/usr/bin/env fibjs in .bin script.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed May 31, 2024
1 parent 9dd591e commit 8335656
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fib-runner",
"version": "2.1.0",
"version": "2.2.0",
"description": "process manager developed using fibjs",
"bin": {
"runnerd": "./runnerd.js",
Expand Down
1 change: 1 addition & 0 deletions runnerctl.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env fibjs
var http = require('http');
var ws = require('ws');
var ssl = require('ssl');
Expand Down
1 change: 1 addition & 0 deletions runnerd.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env fibjs
var child_process = require('child_process');

if (process.argv[2] !== '--daemon' && process.argv[2] !== '--console') {
Expand Down

0 comments on commit 8335656

Please sign in to comment.