mirror of
https://github.com/DeterminateSystems/nix-installer-action.git
synced 2024-12-23 05:22:21 +01:00
fixup extra arguments (#113)
This commit is contained in:
parent
468e81bb99
commit
033f039e5c
2 changed files with 2 additions and 2 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
@ -103364,7 +103364,7 @@ ${stderrBuffer}`
|
||||||
}
|
}
|
||||||
if (this.extraArgs) {
|
if (this.extraArgs) {
|
||||||
const extraArgs = parseArgsStringToArgv(this.extraArgs);
|
const extraArgs = parseArgsStringToArgv(this.extraArgs);
|
||||||
args.concat(extraArgs);
|
args.push(...extraArgs);
|
||||||
}
|
}
|
||||||
this.recordEvent(EVENT_INSTALL_NIX_START);
|
this.recordEvent(EVENT_INSTALL_NIX_START);
|
||||||
const exitCode = await exec.exec(binaryPath, args, {
|
const exitCode = await exec.exec(binaryPath, args, {
|
||||||
|
|
|
@ -570,7 +570,7 @@ class NixInstallerAction extends DetSysAction {
|
||||||
|
|
||||||
if (this.extraArgs) {
|
if (this.extraArgs) {
|
||||||
const extraArgs = stringArgv(this.extraArgs);
|
const extraArgs = stringArgv(this.extraArgs);
|
||||||
args.concat(extraArgs);
|
args.push(...extraArgs);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.recordEvent(EVENT_INSTALL_NIX_START);
|
this.recordEvent(EVENT_INSTALL_NIX_START);
|
||||||
|
|
Loading…
Reference in a new issue