Skip to content

Commit 1759b60

Browse files
author
Antonio Scandurra
authored
Merge pull request atom-archive#111 from atom/fix-travis
Try to fix Travis
2 parents 7e87a67 + 1fd4fe9 commit 1759b60

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

xray_wasm/script/build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env bash
22

3+
LOCAL_CRATE_PATH=./.cargo
4+
PATH=$LOCAL_CRATE_PATH/bin:$PATH
35
WASM_BINDGEN_VERSION=0.2.6
46

57
setup_wasm_bindgen() {
6-
LOCAL_CRATE_PATH=./.cargo
7-
PATH=$LOCAL_CRATE_PATH/bin:$PATH
88
if (command -v wasm-bindgen) && $(wasm-bindgen --version | grep --silent $WASM_BINDGEN_VERSION); then
99
echo 'Using existing installation of wasm-bindgen'
1010
else

xray_wasm/script/test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env bash
22

3+
LOCAL_CRATE_PATH=./.cargo
4+
PATH=$LOCAL_CRATE_PATH/bin:$PATH
5+
36
set -e
47

58
rm -rf dist

0 commit comments

Comments
 (0)