Skip to content

Commit

Permalink
fix: Remove superfluous -S for env in shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Aug 17, 2021
1 parent e779500 commit 0b897ab
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/SwingSet/tools/rekernelize.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

import 'node-lmdb';
import '@agoric/babel-standalone';
Expand Down
2 changes: 1 addition & 1 deletion packages/agoric-cli/lib/entrypoint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

/* global process */
// TODO Remove babel-standalone and esm preinitialization
Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/graphDisk.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

import { dataGraphApp } from './dataGraphApp.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/graphMem.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

import { dataGraphApp } from './dataGraphApp.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/graphStats.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

import { dataGraphApp } from './dataGraphApp.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/graphTime.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

import { dataGraphApp } from './dataGraphApp.js';

Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/kerneldump-entrypoint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

/**
* Simple boilerplate program providing linkage to launch an application written using modules within the
Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/runner-entrypoint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

// #!/usr/bin/env -S node --inspect-brk

Expand Down
2 changes: 1 addition & 1 deletion packages/swingset-runner/src/slogulator-entrypoint.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node
#!/usr/bin/env node

/**
* Simple boilerplate program providing linkage to launch an application written using modules within the
Expand Down

0 comments on commit 0b897ab

Please sign in to comment.