Skip to content

Commit 09c5667

Browse files
committed
build: remove -i flag to docker run to allow command being run without a TTY
Signed-off-by: Matteo Collina <hello@matteocollina.com>
1 parent b9bf7ad commit 09c5667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/wasm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if (process.argv[2] === '--prebuild') {
6262
}
6363

6464
if (process.argv[2] === '--docker') {
65-
let cmd = `docker run --rm -it --platform=${platform.toString().trim()}`
65+
let cmd = `docker run --rm -t --platform=${platform.toString().trim()}`
6666
if (process.platform === 'linux') {
6767
cmd += ` --user ${process.getuid()}:${process.getegid()}`
6868
}

0 commit comments

Comments
 (0)