Skip to content

Commit da62a59

Browse files
committed
fix(build-wasm.sh): correct package name from dodge-the-creeps to squash-the-creeps
The script was using the incorrect package name 'dodge-the-creeps' instead of 'squash-the-creeps'. This would have caused build failures or incorrect builds. The change ensures the correct package is built for both the host and WASM targets.
1 parent b8a5913 commit da62a59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

squash-the-creeps/rust/build-wasm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
cd `dirname "$0"`
99

1010
# We build the host gdextension first so that the godot editor doesn't complain.
11-
cargo +nightly build --package dodge-the-creeps &&
12-
cargo +nightly build --package dodge-the-creeps \
11+
cargo +nightly build --package squash-the-creeps &&
12+
cargo +nightly build --package squash-the-creeps \
1313
--features godot/experimental-wasm,godot/lazy-function-tables \
1414
--target wasm32-unknown-emscripten -Zbuild-std $@

0 commit comments

Comments
 (0)