alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Modify print statement
author
Kero van Gelder
committer
Louis Pilfold
date
3 years ago
(Feb 25, 2023, 4:15 PM UTC)
commit
73ab1388
73ab13887da83de924936ef38d9e56427f670712
parent
b106dfd4
b106dfd4d5b10aae1784073b89ca90d45a311091
+5
-2
1 changed file
Expand all
Collapse all
Unified
Split
compiler-cli
src
export.rs
+5
-2
compiler-cli/src/export.rs
View file
Reviewed
···
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
92
-
println!("Creating package file '{}'", &path.display());
93
93
-
crate::fs::write_bytes(&path, &data)
92
92
+
crate::fs::write_bytes(&path, &data)?;
93
93
+
println!("
94
94
+
Your hex tarball has been generated in {}.
95
95
+
", &path.display());
96
96
+
Ok(())
94
97
}