mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
Merge pull request #110 from jonathandturner/windows_fixes
Fixes for windows
This commit is contained in:
commit
8aa8314be5
3 changed files with 6 additions and 3 deletions
|
@ -221,7 +221,7 @@ impl ExternalCommand {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for arg in &self.args {
|
for arg in &self.args {
|
||||||
process = process.arg(arg);
|
process = process.arg(arg.item.clone());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
S
|
markup
|
||||||
|
|
|
@ -2,6 +2,9 @@ cd tests
|
||||||
enter test.json
|
enter test.json
|
||||||
cd glossary
|
cd glossary
|
||||||
cd GlossDiv
|
cd GlossDiv
|
||||||
ls title | echo $it
|
cd GlossList
|
||||||
|
cd GlossEntry
|
||||||
|
cd GlossSee
|
||||||
|
ls | echo $it
|
||||||
exit
|
exit
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in a new issue