Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
fix the JS
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Apr 26, 2019
1 parent a0f03b6 commit c538946
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/upload.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// to ensure that env not in the CI server log

const path = require("path")
const { spawnSync } = require("child_process")
const path = require('path')
const { spawnSync } = require('child_process')

spawnSync(path.join(__dirname, '../node_modules/.bin/prebuild' + (process.platform === "win32" ? '.cmd' : '')), ['--upload-all', process.env.GITHUB_AUTH_TOKEN], {stdio: 'inherit'})
spawnSync(path.join(__dirname, '../node_modules/.bin/prebuild' + (process.platform === 'win32' ? '.cmd' : '')), ['--upload-all', process.env.GITHUB_AUTH_TOKEN], { stdio: 'inherit' })

0 comments on commit c538946

Please sign in to comment.