Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
fix(script-nu): actually run the closures...
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Mar 7, 2024
1 parent 15de66b commit cbae6cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/script-nu/nushell-launcher.nu
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
def "main" [
yaml_file: string
] {
($yaml_file | from yaml).scripts | each {
| script | { run-external $script | complete }
($yaml_file | from yaml).scripts | par-each {
| script | do { run-external $script | complete }
}
}

0 comments on commit cbae6cb

Please sign in to comment.