Skip to content

Commit

Permalink
Use /usr/bin/env not /bin/env as a more portable (present on OSX)
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Apr 26, 2024
1 parent ae9d7fb commit f5e574d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bids-validator/bids-validator-deno
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run
import './src/bids-validator.ts'

2 changes: 1 addition & 1 deletion bids-validator/build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run
/**
* Build the schema based validator for distribution (web and npm), targets browser compatible ESM
*
Expand Down

0 comments on commit f5e574d

Please sign in to comment.