mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
const childProcess = require('child_process')
|
|
const path = require('path')
|
|
|
|
function parseArgs() {
|
|
const result = {}
|
|
for (const arg of process.argv.slice(2)) {
|
|
const equalsIndex = arg.indexOf('=')
|
|
if (equalsIndex === -1) {
|
|
continue
|
|
}
|
|
const key = arg.slice(0, equalsIndex)
|
|
const value = arg.slice(equalsIndex + 1)
|
|
result[key] = value
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
const args = parseArgs()
|
|
const filePath = args.file
|
|
if (!filePath) {
|
|
throw new Error('file is not specified')
|
|
}
|
|
|
|
const waitScript = path.join(__dirname, 'wait-for-file.js')
|
|
const waitArgs = [waitScript, `file=${filePath}`]
|
|
|
|
// Spawn with inherited stdio and detached on Unix, non-detached on Windows
|
|
// This keeps the streams open after parent exits
|
|
const isWindows = process.platform === 'win32'
|
|
const spawnOptions = {
|
|
stdio: 'inherit',
|
|
detached: !isWindows
|
|
}
|
|
|
|
// On Windows, we need to hide the window
|
|
if (isWindows) {
|
|
spawnOptions.windowsHide = true
|
|
}
|
|
|
|
const waitProcess = childProcess.spawn(process.execPath, waitArgs, spawnOptions)
|
|
|
|
// Unref so parent doesn't wait for child
|
|
waitProcess.unref()
|
|
|
|
if (args.stderr === 'true') {
|
|
process.stderr.write('hi')
|
|
}
|
|
|
|
const exitCode = args.exitCode ? parseInt(args.exitCode, 10) : 0
|
|
process.exit(exitCode)
|