Fix check_polkadot CI check (#4317)

* Fix `check_polkadot` CI check

* Another try

* Use path overrides

* Last fix

* Update .gitlab-ci.yml

* Fix wasm builder

* Update wasm_project.rs
This commit is contained in:
Bastian Köcher
2019-12-07 23:36:47 +01:00
committed by GitHub
parent b8ac094649
commit 94b6921d03
2 changed files with 6 additions and 10 deletions
@@ -181,6 +181,7 @@ fn create_wasm_workspace_project(wasm_workspace: &Path, cargo_manifest: &Path) {
.map(|d| d.into_path())
.filter(|p| p.is_dir() && !p.ends_with("target"))
.filter_map(|p| p.file_name().map(|f| f.to_owned()).and_then(|s| s.into_string().ok()))
.filter(|f| !f.starts_with("."))
.collect::<Vec<_>>();
let crate_metadata = MetadataCommand::new()