space separated options

This commit is contained in:
Graham Christensen 2024-05-09 15:26:43 -04:00
parent d978837d43
commit d021735a89
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ class UpdateFlakeLockAction {
this.idslib = new IdsToolbox(options);
this.commitMessage = inputs.getString("commit-msg");
this.flakeInputs = inputs.getArrayOfStrings("inputs", "comma");
this.nixOptions = inputs.getArrayOfStrings("nix-options", "comma");
this.nixOptions = inputs.getArrayOfStrings("nix-options", "space");
this.pathToFlakeDir = inputs.getStringOrNull("path-to-flake-dir");
}