Skip to content

Commit

Permalink
Merge pull request #340 from near/fix-space-in-dir
Browse files Browse the repository at this point in the history
Fix build script when there is space in project path
  • Loading branch information
ailisp authored Feb 6, 2023
2 parents 30d4cb6 + 9f4c0bc commit d0dce58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/near-sdk-js/lib/cli/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/near-sdk-js/lib/cli/post-install.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/near-sdk-js/src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,5 +385,5 @@ async function createWasmContract(

async function wasiStubContract(contractTarget: string, verbose = false) {
const WASI_STUB = `${NEAR_SDK_JS}/lib/cli/deps/binaryen/wasi-stub/run.sh`;
await executeCommand(`${WASI_STUB} ${contractTarget} >/dev/null`, verbose);
await executeCommand(`${WASI_STUB} ${contractTarget}`, verbose);
}
2 changes: 1 addition & 1 deletion packages/near-sdk-js/src/cli/post-install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (!SUPPORTED_ARCH.includes(ARCH)) {

signale.await("Installing wasi-stub...");

const BINARYEN_VERSION = `0.1.10`;
const BINARYEN_VERSION = `0.1.15`;
const BINARYEN_VERSION_TAG = `v${BINARYEN_VERSION}`;

const BINARYEN_SYSTEM_NAME =
Expand Down

0 comments on commit d0dce58

Please sign in to comment.