1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-24 13:42:14 +00:00

Merge pull request from killercup/fix-browser-flag

Cli: Fix browser flag
This commit is contained in:
Alex Crichton 2018-03-28 18:30:55 +02:00 committed by GitHub
commit 929badcee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -56,7 +56,7 @@ fn main() {
let mut b = Bindgen::new(); let mut b = Bindgen::new();
b.input_path(&input) b.input_path(&input)
.nodejs(args.flag_nodejs) .nodejs(args.flag_nodejs)
.browser(args.browser) .browser(args.flag_browser)
.debug(args.flag_debug) .debug(args.flag_debug)
.typescript(args.flag_typescript); .typescript(args.flag_typescript);