Skip to content

Commit

Permalink
fix(core): use more common interpreter
Browse files Browse the repository at this point in the history
use /usr/bin/env instead of /bin/env as the interperter program in bin scripts

#42
  • Loading branch information
stropitek committed Oct 31, 2016
1 parent 0f31e6c commit 653ac29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/rest-on-couch-file-drop.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env node
#!/usr/bin/env node

'use strict';

Expand Down
2 changes: 1 addition & 1 deletion bin/rest-on-couch-import.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env node
#!/usr/bin/env node

'use strict';

Expand Down
2 changes: 1 addition & 1 deletion bin/rest-on-couch-log.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env node
#!/usr/bin/env node

'use strict';

Expand Down
2 changes: 1 addition & 1 deletion bin/rest-on-couch-server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env node
#!/usr/bin/env node

'use strict';

Expand Down

0 comments on commit 653ac29

Please sign in to comment.