We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec95964 commit a869daeCopy full SHA for a869dae
lib/cli/src/commands/create_exe.rs
@@ -984,6 +984,7 @@ mod http_fetch {
984
.expect("Could not join downloading thread");
985
match super::get_libwasmer_cache_path() {
986
Ok(mut cache_path) => {
987
+ let _ = std::fs::create_dir_all(&cache_path);
988
cache_path.push(&filename);
989
if !cache_path.exists() {
990
if let Err(err) = std::fs::copy(&filename, &cache_path) {
0 commit comments