Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit a5ab2f8

Browse files
author
Simon Hofmann
committed
Switched ordering of parameters on prebuild command
1 parent 582e9b1 commit a5ab2f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/prebuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if (!uploadToken) {
5858
throw new Error(`Missing upload token at env ${UPLOAD_TOKEN_KEY}`)
5959
}
6060

61-
const prebuildCmd = `prebuild -u ${uploadToken} --include-regex "\.(node|a|so|dylib|lib|dll).*$"`
61+
const prebuildCmd = `prebuild --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${uploadToken}`
6262
log.info('install', `Running prebuild`)
6363
const child = exec(prebuildCmd, {
6464
maxBuffer: 1024 * 1024 * 10

0 commit comments

Comments
 (0)