Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spread arguments to external commands #57

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions nupm/test.nu
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export def main [
print $'Testing package ($pkg_root)'
cd $pkg_root

let tests = ^$nu.current-exe [
let tests = ^$nu.current-exe ...[
--no-config-file
--commands
'use tests/
Expand All @@ -47,7 +47,7 @@ export def main [
| where ($filter in $it)
| par-each {|test|
let res = do {
^$nu.current-exe [
^$nu.current-exe ...[
--no-config-file
--commands
$'use tests/; ($test)'
Expand Down