Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Modify print statement

+5 -2
+5 -2
compiler-cli/src/export.rs
··· 89 89 let data: Vec<u8> = crate::publish::build_hex_tarball(&config)?; 90 90 91 91 let path = paths::build_tarball(&config.name, &config.version.to_string()); 92 - println!("Creating package file '{}'", &path.display()); 93 - crate::fs::write_bytes(&path, &data) 92 + crate::fs::write_bytes(&path, &data)?; 93 + println!(" 94 + Your hex tarball has been generated in {}. 95 + ", &path.display()); 96 + Ok(()) 94 97 }