Skip to content

Commit

Permalink
fix shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
justjake committed Dec 25, 2023
1 parent 68be562 commit 4b09654
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion prepareVariants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env npx tsx
#!/usr/bin/env -S npx tsx

/**
* This file defines all the different variants of the quickjs WASM library.
Expand Down
2 changes: 1 addition & 1 deletion scripts/check-packages-built.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env npx tsx
#!/usr/bin/env -S npx tsx
import fs from "node:fs"
import * as sh from "./helpers"
import * as glob from "glob"
Expand Down
2 changes: 1 addition & 1 deletion scripts/smoketest-node.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env npx tsx
#!/usr/bin/env -S npx tsx
import * as sh from "./helpers"

const target = sh.resolve(__dirname, "../examples/typescript-smoketest")
Expand Down
2 changes: 1 addition & 1 deletion scripts/smoketest-vite.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env npx tsx
#!/usr/bin/env -S npx tsx
import * as sh from "./helpers"

const target = sh.resolve(__dirname, "../examples/vite-vue")
Expand Down
2 changes: 1 addition & 1 deletion scripts/smoketest-website.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env npx tsx
#!/usr/bin/env -S npx tsx
import * as sh from "./helpers"

const target = sh.resolve(__dirname, "../examples/website")
Expand Down

0 comments on commit 4b09654

Please sign in to comment.