space-sep'd inputs

This commit is contained in:
Graham Christensen 2024-05-09 18:13:07 -04:00
parent bcabaab2f1
commit 165ae6e270
3 changed files with 3 additions and 3 deletions

View file

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