Skip to content

Commit 092ce3d

Browse files
committed
explicit option
1 parent babb235 commit 092ce3d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dawn/download_artifacts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ async function main(args: Args) {
302302
}
303303

304304
console.log(`Unpacking ${downloadedArchivePath} to ${artifactDir} using tar...`)
305-
const tarArgs = ["xf", downloadedArchivePath, "-C", artifactDir, "--strip-components=1"]
305+
const tarArgs = ["-xf", downloadedArchivePath, "-C", artifactDir, "--strip-components=1"]
306306
if (process.platform === "win32") {
307307
tarArgs.unshift("--force-local")
308308
}

0 commit comments

Comments
 (0)