aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/world/shell.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-24 05:23:45 -0400
committerEduardo Julian2021-08-24 05:23:45 -0400
commit36303d6cb2ce3ab9e36d045b9516c997bd461862 (patch)
treeb9d2f1495143054d61d9af129f36833624db9dac /stdlib/source/library/lux/world/shell.lux
parentec1f31b5a1492d5e0ab260397291d4449483bbd9 (diff)
Outsourced the syntax for labelled type definitions to macros.
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/world/shell.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/world/shell.lux b/stdlib/source/library/lux/world/shell.lux
index a86f33a67..209c161bd 100644
--- a/stdlib/source/library/lux/world/shell.lux
+++ b/stdlib/source/library/lux/world/shell.lux
@@ -290,7 +290,7 @@
... https://en.wikipedia.org/wiki/Code_injection#Shell_injection
(def: windows?
(IO (Try Bit))
- (\ (try.with io.monad) map
+ (\ (try.with io.monad) each
(|>> java/lang/String::toLowerCase (text.starts_with? "windows"))
(java/lang/System::getProperty "os.name")))
@@ -305,7 +305,7 @@
(java/lang/ProcessBuilder::directory (java/io/File::new working_directory)))]
_ (|> builder
java/lang/ProcessBuilder::environment
- (\ try.functor map (..jvm::load_environment environment))
+ (\ try.functor each (..jvm::load_environment environment))
(\ io.monad in))
process (java/lang/ProcessBuilder::start builder)]
(..default_process process))))
@@ -380,5 +380,5 @@
(def: execute
(|>> mock
- (\ try.monad map (..mock_process (atom.atom init)))
+ (\ try.monad each (..mock_process (atom.atom init)))
io.io)))