mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Merge pull request #1143 from YorikSar/fix-github-runner-labels
github-runner: Fix labels for different nixpkgs versions
This commit is contained in:
commit
fa7b46fa77
1 changed files with 5 additions and 1 deletions
|
@ -94,6 +94,10 @@ in
|
|||
|
||||
script =
|
||||
let
|
||||
# https://github.com/NixOS/nixpkgs/pull/333744 introduced an inconsistency with different
|
||||
# versions of nixpkgs. Use the old version of escapeShellArg to make sure that labels
|
||||
# are always escaped to avoid https://www.shellcheck.net/wiki/SC2054
|
||||
escapeShellArgAlways = string: "'${replaceStrings ["'"] ["'\\''"] (toString string)}'";
|
||||
configure = pkgs.writeShellApplication {
|
||||
name = "configure-github-runner-${name}";
|
||||
text = /*bash*/''
|
||||
|
@ -104,7 +108,7 @@ in
|
|||
--disableupdate
|
||||
--work ${escapeShellArg workDir}
|
||||
--url ${escapeShellArg cfg.url}
|
||||
--labels "${escapeShellArg (concatStringsSep "," cfg.extraLabels)}"
|
||||
--labels ${escapeShellArgAlways (concatStringsSep "," cfg.extraLabels)}
|
||||
${optionalString (cfg.name != null ) "--name ${escapeShellArg cfg.name}"}
|
||||
${optionalString cfg.replace "--replace"}
|
||||
${optionalString (cfg.runnerGroup != null) "--runnergroup ${escapeShellArg cfg.runnerGroup}"}
|
||||
|
|
Loading…
Reference in a new issue