From 9e93565a4945bd50c7552051aa57f13226c55a94 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Sat, 20 Apr 2019 20:37:39 -0500 Subject: [PATCH 01/17] Cleanup build warnings imports and unnecessary unsafe --- lib/clif-backend/src/cache.rs | 2 +- lib/llvm-backend/src/backend.rs | 4 ++-- lib/singlepass-backend/src/lib.rs | 2 +- lib/singlepass-backend/src/parse.rs | 3 +-- lib/win-exception-handler/build.rs | 3 +-- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/lib/clif-backend/src/cache.rs b/lib/clif-backend/src/cache.rs index 8b6cb4684..b4f647372 100644 --- a/lib/clif-backend/src/cache.rs +++ b/lib/clif-backend/src/cache.rs @@ -5,7 +5,7 @@ use std::sync::Arc; use wasmer_runtime_core::{ backend::{sys::Memory, CacheGen}, cache::{Artifact, Error}, - module::{ModuleInfo, ModuleInner}, + module::ModuleInfo, structures::Map, types::{LocalFuncIndex, SigIndex}, }; diff --git a/lib/llvm-backend/src/backend.rs b/lib/llvm-backend/src/backend.rs index 783a432ff..bbfed68a0 100644 --- a/lib/llvm-backend/src/backend.rs +++ b/lib/llvm-backend/src/backend.rs @@ -297,7 +297,7 @@ impl LLVMBackend { let callbacks = get_callbacks(); let mut module: *mut LLVMModule = ptr::null_mut(); - let slice = unsafe { memory.as_slice() }; + let slice = memory.as_slice(); let res = module_load(slice.as_ptr(), slice.len(), callbacks, &mut module); @@ -307,7 +307,7 @@ impl LLVMBackend { static SIGNAL_HANDLER_INSTALLED: Once = Once::new(); - SIGNAL_HANDLER_INSTALLED.call_once(|| unsafe { + SIGNAL_HANDLER_INSTALLED.call_once(|| { crate::platform::install_signal_handler(); }); diff --git a/lib/singlepass-backend/src/lib.rs b/lib/singlepass-backend/src/lib.rs index 7ecd029e4..967401cc9 100644 --- a/lib/singlepass-backend/src/lib.rs +++ b/lib/singlepass-backend/src/lib.rs @@ -31,7 +31,7 @@ use wasmer_runtime_core::{ backend::{sys::Memory, Backend, CacheGen, Compiler, CompilerConfig, Token}, cache::{Artifact, Error as CacheError}, error::{CompileError, CompileResult}, - module::{ModuleInfo, ModuleInner}, + module::ModuleInner, }; struct Placeholder; diff --git a/lib/singlepass-backend/src/parse.rs b/lib/singlepass-backend/src/parse.rs index e02b4b8c1..6e330490e 100644 --- a/lib/singlepass-backend/src/parse.rs +++ b/lib/singlepass-backend/src/parse.rs @@ -15,8 +15,7 @@ use wasmer_runtime_core::{ units::Pages, }; use wasmparser::{ - BinaryReaderError, Data, DataKind, Element, ElementKind, Export, ExternalKind, FuncType, - Import, ImportSectionEntryType, InitExpr, ModuleReader, Operator, SectionCode, Type as WpType, + BinaryReaderError, ExternalKind, FuncType, ImportSectionEntryType, Operator, Type as WpType, WasmDecoder, }; diff --git a/lib/win-exception-handler/build.rs b/lib/win-exception-handler/build.rs index 7376c6329..1ed351206 100644 --- a/lib/win-exception-handler/build.rs +++ b/lib/win-exception-handler/build.rs @@ -1,8 +1,7 @@ -use cmake::Config; - fn main() { #[cfg(target_os = "windows")] { + use cmake::Config; let project_name = "exception_handling"; let dst = Config::new(project_name).build(); println!("cargo:rustc-link-search=native={}", dst.display()); From f2130fc2271329909267fbce8d1ee14a5dd9447a Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 12:06:55 -0700 Subject: [PATCH 02/17] pin wapm version --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 831abb956..9be02af8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -153,7 +153,7 @@ jobs: - run: name: "Pull dependencies" command: | - git clone git@github.com:wasmerio/wapm-cli.git + git clone --branch v0.1.0 --depth 1 https://github.com/wasmerio/wapm-cli - restore_cache: keys: - v8-cargo-cache-linux-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} From f372fddb9e2fc6d0bf46e203bcf843b41152d69c Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 12:59:55 -0700 Subject: [PATCH 03/17] add wapm-cli as git submodule at the v0.1.0 tag commit --- .gitmodules | 3 +++ wapm-cli | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 wapm-cli diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..ea4c03efb --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "wapm-cli"] + path = wapm-cli + url = git@github.com:wasmerio/wapm-cli.git diff --git a/wapm-cli b/wapm-cli new file mode 160000 index 000000000..c9399f3fb --- /dev/null +++ b/wapm-cli @@ -0,0 +1 @@ +Subproject commit c9399f3fb117c8ab1cbaf17b02bd5aeefb8e8e54 From 5881f5468280a69fb114f033f429c8f2ad7a2e85 Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 12:06:55 -0700 Subject: [PATCH 04/17] Revert "pin wapm version" This reverts commit f2130fc2271329909267fbce8d1ee14a5dd9447a. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9be02af8d..831abb956 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -153,7 +153,7 @@ jobs: - run: name: "Pull dependencies" command: | - git clone --branch v0.1.0 --depth 1 https://github.com/wasmerio/wapm-cli + git clone git@github.com:wasmerio/wapm-cli.git - restore_cache: keys: - v8-cargo-cache-linux-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} From 7494e2c8f2a88ad54c61d6f3728b00c063f2845a Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 13:04:12 -0700 Subject: [PATCH 05/17] update config to update the new git submodule --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 831abb956..72b83a36a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -153,7 +153,8 @@ jobs: - run: name: "Pull dependencies" command: | - git clone git@github.com:wasmerio/wapm-cli.git + git submodule init + git submodule update --remote - restore_cache: keys: - v8-cargo-cache-linux-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} @@ -220,7 +221,8 @@ jobs: - run: name: "Pull dependencies" command: | - git clone git@github.com:wasmerio/wapm-cli.git + git submodule init + git submodule update --remote - restore_cache: keys: - v8-cargo-cache-darwin-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} From 24d5d2d8a7ff745a43bc7d4644c639a120435522 Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 13:43:40 -0700 Subject: [PATCH 06/17] install rust with new https curl --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72b83a36a..4d0722cfb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -240,7 +240,7 @@ jobs: - run: name: Install Rust command: | - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2019-04-11 + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly export PATH="$HOME/.cargo/bin:$PATH" cargo --version # Use rust nightly (for singlepass, for now) From b1ece9dc41aa52d61113ec2da00639068082f35f Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Tue, 23 Apr 2019 13:53:48 -0700 Subject: [PATCH 07/17] add the other correct usage of rustup install --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4d0722cfb..49d8b10d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -103,7 +103,7 @@ jobs: - run: name: Install Rust command: | - curl https://sh.rustup.rs -sSf | sh -s -- -y + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly export PATH="$HOME/.cargo/bin:$PATH" cargo --version - run: From 389c6a015d694c7e9d9ae2b62ed04f2106dbae58 Mon Sep 17 00:00:00 2001 From: Brandon Fish Date: Wed, 24 Apr 2019 02:00:07 -0500 Subject: [PATCH 08/17] Remove unused function memory offset addr --- lib/runtime-core/src/instance.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/runtime-core/src/instance.rs b/lib/runtime-core/src/instance.rs index 78d0f7d91..14d7a0146 100644 --- a/lib/runtime-core/src/instance.rs +++ b/lib/runtime-core/src/instance.rs @@ -657,10 +657,3 @@ impl<'a> DynFunc<'a> { } } } - -#[doc(hidden)] -impl Instance { - pub fn memory_offset_addr(&self, _: u32, _: usize) -> *const u8 { - unimplemented!() - } -} From 6ff24a8aa18eb809d1e887f2554ed4a864e46654 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Thu, 25 Apr 2019 11:01:46 -0700 Subject: [PATCH 09/17] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4deaceb2..1a2fc7739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All PRs to the Wasmer repository must add to this file. Blocks of changes will separated by version increments. ## **[Unreleased]** +- [#390](https://github.com/wasmerio/wasmer/pull/390) Pin released wapm version and add it as a git submodule - [#383](https://github.com/wasmerio/wasmer/pull/383) Hook up wasi exit code to wasmer cli. - [#382](https://github.com/wasmerio/wasmer/pull/382) Improve error message on `--backend` flag to only suggest currently enabled backends - [#381](https://github.com/wasmerio/wasmer/pull/381) Allow retrieving propagated user errors. From 3998c9ec179e6fa89b288ebb40871b78fafa4be6 Mon Sep 17 00:00:00 2001 From: Mackenzie Clark Date: Thu, 25 Apr 2019 12:45:45 -0700 Subject: [PATCH 10/17] remove zbox because wasmer will not build on windows nightly --- Cargo.lock | 1 - lib/wasi/Cargo.toml | 5 ----- lib/wasi/src/state.rs | 15 --------------- 3 files changed, 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c2fd0078..2bac41a81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2406,7 +2406,6 @@ dependencies = [ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "wasmer-runtime-core 0.3.0", - "zbox 0.6.1 (git+https://github.com/wasmerio/zbox?branch=bundle-libsodium)", ] [[package]] diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index 87224d529..30493f8fa 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -16,8 +16,3 @@ hashbrown = "0.1.8" generational-arena = "0.2.2" log = "0.4.6" byteorder = "1.3.1" - -[dependencies.zbox] -git = "https://github.com/wasmerio/zbox" -branch = "bundle-libsodium" -features = ["libsodium-bundled"] diff --git a/lib/wasi/src/state.rs b/lib/wasi/src/state.rs index 813250c57..eb7323bf7 100644 --- a/lib/wasi/src/state.rs +++ b/lib/wasi/src/state.rs @@ -12,42 +12,35 @@ use std::{ time::SystemTime, }; use wasmer_runtime_core::debug; -use zbox::init_env as zbox_init_env; pub const MAX_SYMLINKS: usize = 100; #[derive(Debug)] pub enum WasiFile { - #[allow(dead_code)] - ZboxFile(zbox::File), HostFile(fs::File), } impl Write for WasiFile { fn write(&mut self, buf: &[u8]) -> io::Result { match self { - WasiFile::ZboxFile(zbf) => zbf.write(buf), WasiFile::HostFile(hf) => hf.write(buf), } } fn flush(&mut self) -> io::Result<()> { match self { - WasiFile::ZboxFile(zbf) => zbf.flush(), WasiFile::HostFile(hf) => hf.flush(), } } fn write_all(&mut self, buf: &[u8]) -> io::Result<()> { match self { - WasiFile::ZboxFile(zbf) => zbf.write_all(buf), WasiFile::HostFile(hf) => hf.write_all(buf), } } fn write_fmt(&mut self, fmt: ::std::fmt::Arguments) -> io::Result<()> { match self { - WasiFile::ZboxFile(zbf) => zbf.write_fmt(fmt), WasiFile::HostFile(hf) => hf.write_fmt(fmt), } } @@ -56,28 +49,24 @@ impl Write for WasiFile { impl Read for WasiFile { fn read(&mut self, buf: &mut [u8]) -> io::Result { match self { - WasiFile::ZboxFile(zbf) => zbf.read(buf), WasiFile::HostFile(hf) => hf.read(buf), } } fn read_to_end(&mut self, buf: &mut Vec) -> io::Result { match self { - WasiFile::ZboxFile(zbf) => zbf.read_to_end(buf), WasiFile::HostFile(hf) => hf.read_to_end(buf), } } fn read_to_string(&mut self, buf: &mut String) -> io::Result { match self { - WasiFile::ZboxFile(zbf) => zbf.read_to_string(buf), WasiFile::HostFile(hf) => hf.read_to_string(buf), } } fn read_exact(&mut self, buf: &mut [u8]) -> io::Result<()> { match self { - WasiFile::ZboxFile(zbf) => zbf.read_exact(buf), WasiFile::HostFile(hf) => hf.read_exact(buf), } } @@ -86,7 +75,6 @@ impl Read for WasiFile { impl Seek for WasiFile { fn seek(&mut self, pos: io::SeekFrom) -> io::Result { match self { - WasiFile::ZboxFile(zbf) => zbf.seek(pos), WasiFile::HostFile(hf) => hf.seek(pos), } } @@ -183,9 +171,6 @@ pub struct WasiFs { impl WasiFs { pub fn new(preopened_files: &[String]) -> Result { - debug!("wasi::fs::init"); - zbox_init_env(); - debug!("wasi::fs::repo"); /*let repo = RepoOpener::new() .create(true) .open("mem://wasmer-test-fs", "") From 8eb6a0a53ec391e02de71c5319de8f2104d24a86 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Thu, 25 Apr 2019 13:47:58 -0700 Subject: [PATCH 11/17] revert curl command change --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49d8b10d5..1837fcd89 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -103,7 +103,7 @@ jobs: - run: name: Install Rust command: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly + curl -sSf https://sh.rustup.rs | sh -s -- -y export PATH="$HOME/.cargo/bin:$PATH" cargo --version - run: From 65e6f2582fdb707a13dd25364445373edd98a9d1 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Thu, 25 Apr 2019 15:09:01 -0700 Subject: [PATCH 12/17] revert curl command to not ask for tls 1.2 in ci --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1837fcd89..946c0da63 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -240,7 +240,7 @@ jobs: - run: name: Install Rust command: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly + curl -sSf https://sh.rustup.rs | sh -s -- -y export PATH="$HOME/.cargo/bin:$PATH" cargo --version # Use rust nightly (for singlepass, for now) From 750aafd7cad11770e24de23e80803ad7d8c64383 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Thu, 25 Apr 2019 15:59:46 -0700 Subject: [PATCH 13/17] Fix nightly on macos --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 946c0da63..e2905a425 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -240,7 +240,7 @@ jobs: - run: name: Install Rust command: | - curl -sSf https://sh.rustup.rs | sh -s -- -y + curl -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly export PATH="$HOME/.cargo/bin:$PATH" cargo --version # Use rust nightly (for singlepass, for now) From 655188a7885584b1b0048c57b5458103a1ac9ea7 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Fri, 26 Apr 2019 13:17:36 -0700 Subject: [PATCH 14/17] Fix WASI FS abstraction for Windows --- lib/wasi/src/state.rs | 24 ++++++++++++------------ lib/wasi/src/syscalls/mod.rs | 9 +++------ 2 files changed, 15 insertions(+), 18 deletions(-) diff --git a/lib/wasi/src/state.rs b/lib/wasi/src/state.rs index eb7323bf7..b611bb2a7 100644 --- a/lib/wasi/src/state.rs +++ b/lib/wasi/src/state.rs @@ -9,6 +9,7 @@ use std::{ cell::Cell, fs, io::{self, Read, Seek, Write}, + path::PathBuf, time::SystemTime, }; use wasmer_runtime_core::debug; @@ -138,7 +139,9 @@ pub enum Kind { handle: WasiFile, }, Dir { - handle: WasiFile, + // TODO: wrap it like WasiFile + /// The path on the host system where the directory is located + path: PathBuf, /// The entries of a directory are lazily filled. entries: HashMap, }, @@ -170,7 +173,7 @@ pub struct WasiFs { } impl WasiFs { - pub fn new(preopened_files: &[String]) -> Result { + pub fn new(preopened_dirs: &[String]) -> Result { /*let repo = RepoOpener::new() .create(true) .open("mem://wasmer-test-fs", "") @@ -185,29 +188,26 @@ impl WasiFs { next_fd: Cell::new(3), inode_counter: Cell::new(1000), }; - for file in preopened_files { + for dir in preopened_dirs { debug!("Attempting to preopen {}", &file); // TODO: think about this let default_rights = 0x1FFFFFFF; // all rights - let cur_file: fs::File = fs::OpenOptions::new() - .read(true) - .open(file) - .expect("Could not find file"); - let cur_file_metadata = cur_file.metadata().unwrap(); - let kind = if cur_file_metadata.is_dir() { + let cur_dir = PathBuf::from(dir); + let cur_dir_metadata = cur_dir.metadata().expect("Could not find directory"); + let kind = if cur_dir_metadata.is_dir() { Kind::Dir { - handle: WasiFile::HostFile(cur_file), + path: cur_dir.clone(), entries: Default::default(), } } else { return Err(format!( "WASI only supports pre-opened directories right now; found \"{}\"", - file + &dir )); }; // TODO: handle nested pats in `file` let inode_val = - InodeVal::from_file_metadata(&cur_file_metadata, file.clone(), true, kind); + InodeVal::from_file_metadata(&cur_dir_metadata, dir.clone(), true, kind); let inode = wasi_fs.inodes.insert(inode_val); wasi_fs.inodes[inode].stat.st_ino = wasi_fs.inode_counter.get(); diff --git a/lib/wasi/src/syscalls/mod.rs b/lib/wasi/src/syscalls/mod.rs index ad2835d77..fcd1caadd 100644 --- a/lib/wasi/src/syscalls/mod.rs +++ b/lib/wasi/src/syscalls/mod.rs @@ -1242,15 +1242,12 @@ pub fn path_open( }; // TODO: handle __WASI_O_TRUNC on directories - let cur_dir = wasi_try!(open_options - .open(&cumulative_path) - .map_err(|_| __WASI_EINVAL)); - // TODO: refactor and reuse - let cur_file_metadata = cur_dir.metadata().unwrap(); + let cur_file_metadata = + wasi_try!(cumulative_path.metadata().map_err(|_| __WASI_EINVAL)); let kind = if cur_file_metadata.is_dir() { Kind::Dir { - handle: WasiFile::HostFile(cur_dir), + path: cumulative_path.clone(), entries: Default::default(), } } else { From a6091e1eea902229e202a1b15eb466ebe53927ec Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Fri, 26 Apr 2019 13:34:27 -0700 Subject: [PATCH 15/17] update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a2fc7739..f46d5cbd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All PRs to the Wasmer repository must add to this file. Blocks of changes will separated by version increments. ## **[Unreleased]** +- [#397](https://github.com/wasmerio/wasmer/pull/397) Fix WASI fs abstraction to work on Windows - [#390](https://github.com/wasmerio/wasmer/pull/390) Pin released wapm version and add it as a git submodule - [#383](https://github.com/wasmerio/wasmer/pull/383) Hook up wasi exit code to wasmer cli. - [#382](https://github.com/wasmerio/wasmer/pull/382) Improve error message on `--backend` flag to only suggest currently enabled backends From a6b8c1b0fa4c8d89783b83abbb9717746f131d3b Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Fri, 26 Apr 2019 17:40:55 -0700 Subject: [PATCH 16/17] Fix debug issue --- lib/wasi/src/state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wasi/src/state.rs b/lib/wasi/src/state.rs index b611bb2a7..f1608e768 100644 --- a/lib/wasi/src/state.rs +++ b/lib/wasi/src/state.rs @@ -189,7 +189,7 @@ impl WasiFs { inode_counter: Cell::new(1000), }; for dir in preopened_dirs { - debug!("Attempting to preopen {}", &file); + debug!("Attempting to preopen {}", &dir); // TODO: think about this let default_rights = 0x1FFFFFFF; // all rights let cur_dir = PathBuf::from(dir); From f2d9d22e9481f048e170ca8d26e4be71271b977d Mon Sep 17 00:00:00 2001 From: Syrus Date: Sat, 27 Apr 2019 12:40:49 -0700 Subject: [PATCH 17/17] Fixed wapm-cli git module url location --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index ea4c03efb..af96cdf0e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "wapm-cli"] path = wapm-cli - url = git@github.com:wasmerio/wapm-cli.git + url = https://github.com/wasmerio/wapm-cli.git