We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4d0c4 commit 6011d7dCopy full SHA for 6011d7d
+stdlib/+fileio/extract_zstd.m
@@ -19,10 +19,14 @@ function extract_zstd(archive, out_dir)
19
if ret ~= 0
20
if ismac
21
msg = "brew install zstd";
22
+ elseif isunix
23
+ msg = "apt install zstd";
24
+ elseif ispc
25
+ msg = "https://github.com/facebook/zstd/releases and look for zstd-*-win64.zip";
26
else
- msg = "cmake -P cmake/build_zstd.cmake";
27
+ msg = "https://github.com/facebook/zstd/releases";
28
end
- error("need to have Zstd installed: \n install zstd by: \n %s", msg)
29
+ error("stdlib:fileio:extract_zstd:EnvironmentError", "need to have Zstd installed: \n install zstd: \n %s", msg)
30
31
32
tar_arc = tempname;
0 commit comments