Skip to content

Commit

Permalink
chore: update shebang for bin scripts (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 authored Sep 16, 2024
1 parent 474ab9a commit d5a8faa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/smp-download.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/node
#!/usr/bin/env node
import { Command, InvalidArgumentError } from 'commander'
import fs from 'fs'
import { pipeline } from 'stream/promises'
Expand Down
2 changes: 1 addition & 1 deletion bin/smp-view.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/node
#!/usr/bin/env node
import fastifyStatic from '@fastify/static'
import { Command } from 'commander'
import fastify from 'fastify'
Expand Down
2 changes: 1 addition & 1 deletion bin/smp.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/node
#!/usr/bin/env node
import { Command } from 'commander'

const program = new Command()
Expand Down

0 comments on commit d5a8faa

Please sign in to comment.