Skip to content

Commit

Permalink
chore: fix warnings in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Apr 18, 2024
1 parent 3c03555 commit 6461143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ $InstallPath = "packages/mitex/mitex.wasm"
if (Test-Path $InstallPath) {
Remove-Item $InstallPath
}
mv target/wasm32-unknown-unknown/release/mitex_wasm.wasm $InstallPath
Move-Item target/wasm32-unknown-unknown/release/mitex_wasm.wasm $InstallPath

pwsh -Command { cd crates/mitex-wasm; wasm-pack build --release --features web }
pwsh -Command { Set-Location crates/mitex-wasm; wasm-pack build --release --features web }

0 comments on commit 6461143

Please sign in to comment.