Skip to content

Commit 86ab89b

Browse files
authored
nushell: use ellipsis list spreading operator on run-externals (#55)
closes #54
1 parent 7ebd6cc commit 86ab89b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/env.nu

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
def _nix_your_shell (command: string, args: list<string>) {
55
if not (which nix-your-shell | is-empty) {
66
let args = ["--"] ++ $args
7-
run-external nix-your-shell $command $args
7+
run-external nix-your-shell $command ...$args
88
} else {
9-
run-external $command $args
9+
run-external $command ...$args
1010
}
1111
}
1212

0 commit comments

Comments
 (0)