summaryrefslogtreecommitdiffstats
path: root/src/utils.rs
diff options
context:
space:
mode:
authorThomas Haessle <thomas.haessle@gmail.com>2020-07-05 19:20:11 +0200
committerGitHub <noreply@github.com>2020-07-05 13:20:11 -0400
commit021d82a224ffe6d3bfc4802fe0178c2f0a92f113 (patch)
tree08218a784a250f0a7d64361d2f4fee7053592c2a /src/utils.rs
parentc6c1bc435d21e2175bf82aa041aacacb4a589c9d (diff)
fix: manage sandboxed version of OCaml (#1433)
* fix: manage sandboxed version of OCaml * fmt: apply cargo fmt Co-authored-by: Thomas Haesslé <thaessle@cutii.io>
Diffstat (limited to 'src/utils.rs')
-rw-r--r--src/utils.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils.rs b/src/utils.rs
index ee7af608d..79b8d8835 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -87,6 +87,10 @@ active boot switches: -d:release\n",
stdout: String::from("4.10.0"),
stderr: String::default(),
}),
+ "esy ocaml -vnum" => Some(CommandOutput {
+ stdout: String::from("4.08.1"),
+ stderr: String::default(),
+ }),
"php -nr echo PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION.'.'.PHP_RELEASE_VERSION;" => {
Some(CommandOutput {
stdout: String::from("7.3.8"),