Skip to content

Commit 24ae61b

Browse files
Leo5878Leo5878
andauthored
chore(postinstall): change function call to use sh instead of bash (#217)
chore(postinstall): use sh instead of bash Co-authored-by: Leo5878 <[email protected]>
1 parent ed23f82 commit 24ae61b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ let tag = require('./package.json').version
44
const os = process.platform
55
const cpu = process.arch
66

7-
execSync(`curl -LSfs https://jasonshin.github.io/sqlx-ts/install.sh | bash -s -- --os ${os} --cpu ${cpu} --tag ${tag} -f`, { stdio: 'inherit' })
7+
execSync(`curl -LSfs https://jasonshin.github.io/sqlx-ts/install.sh | sh -s -- --os ${os} --cpu ${cpu} --tag ${tag} -f`, { stdio: 'inherit' })
88
console.info('sqlx-ts installation successful')

0 commit comments

Comments
 (0)