From 86c6331e14d2bc5480c101f651483570772e6b74 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 4 Mar 2019 09:26:40 -0800 Subject: [PATCH] Fix a bug in azure pipelines config --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2753298d..7c90791e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -127,7 +127,7 @@ jobs: - script: npm install - script: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f - script: cargo build -p wasm-bindgen-cli - - script: ln -snf target/debug/wasm-bindgen $HOME/.cargo/wasm-bindgen + - script: ln -snf `pwd`/target/debug/wasm-bindgen $HOME/.cargo/bin/wasm-bindgen - script: | for dir in `ls examples | grep -v README | grep -v asm.js | grep -v raytrace | grep -v without-a-bundler`; do (cd examples/$dir &&