Merge pull request #118 from paritytech/idents

Fix identation
This commit is contained in:
Nikolay Volf 2019-04-10 07:59:26 +03:00 committed by GitHub
commit f6a1a6a066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 709 additions and 708 deletions

View File

@ -124,6 +124,7 @@ fn do_main() -> Result<(), Error> {
let target_dir = matches.value_of("target").expect("is required; qed");
let wasm_binary = matches.value_of("wasm").expect("is required; qed");
let mut source_input = source::SourceInput::new(target_dir, wasm_binary);
let source_target_val = matches.value_of("source_target").unwrap_or_else(|| source::EMSCRIPTEN_TRIPLET);