Skip to content

Commit 0ffd4d8

Browse files
authored
Remove --offline from publish.rs (#12189)
This was added in #12164 but I don't believe that it's necessary for that operation. That may change the lock file if the crates weren't previously vendored, so this enables using the network to fetch dependencies in the lock file that aren't present locally.
1 parent 19a0946 commit 0ffd4d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/publish.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fn main() {
176176
// update C API version in wasmtime.h
177177
update_capi_version();
178178
// update the lock file
179-
run_cmd(Command::new("cargo").arg("fetch").arg("--offline"));
179+
run_cmd(Command::new("cargo").arg("fetch"));
180180
}
181181

182182
"publish" => {

0 commit comments

Comments
 (0)