We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69bcc22 + f3b2ccb commit d3e475dCopy full SHA for d3e475d
src/cmd_build.rs
@@ -66,7 +66,7 @@ pub fn build_module(
66
];
67
68
let output = if only_wasip1 {
69
- unimplemented!();
+ unimplemented!("Building wasip1 Go apps isn't supported quite yet.");
70
// TODO: for when/if we decide to allow users to build wasm modules without componentizing them
71
#[allow(unreachable_code)]
72
Command::new(&go)
src/cmd_test.rs
@@ -74,7 +74,7 @@ pub fn build_test_module(
74
.env("GOARCH", "wasm")
75
.output()?
76
} else {
77
+ unimplemented!("Please use the --wasip1 flag when building unit tests");
78
79
// TODO: for when we figure out how wasip2 tests are to be run
80
0 commit comments