You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2022. It is now read-only.
When using terrain deploy to deploy the default project (counter), compilation succeeds, but the deployment fails because it tries to use a file called counter-aarch64.wasm despite the fact that the wasm artifact produced is counter.wasm.
Log:
Finished, status of exit status: 0
cp: artifacts/counter-aarch64.wasm: No such file or directory
Error: Command failed: cp artifacts/counter{-aarch64,}.wasm
cp: artifacts/counter-aarch64.wasm: No such file or directory
terrain version from above is @iboss/terrain/0.0.9 darwin-x64 node-v17.6.0, running on macOS Big Sur Version 11.1
Traced this to line 50 in the most recent commit to src/lib/deployment.ts, seems like an error with the string literal producing the filename.
I fixed this temporarily for myself by reverting to 0.0.8, but this looks like a simple bug.
When using
terrain deployto deploy the default project (counter), compilation succeeds, but the deployment fails because it tries to use a file calledcounter-aarch64.wasmdespite the fact that the wasm artifact produced iscounter.wasm.Log:
terrain versionfrom above is@iboss/terrain/0.0.9 darwin-x64 node-v17.6.0, running on macOS Big Sur Version 11.1Traced this to line 50 in the most recent commit to
src/lib/deployment.ts, seems like an error with the string literal producing the filename.I fixed this temporarily for myself by reverting to 0.0.8, but this looks like a simple bug.