From 73366455019b4198694098f3fb7b6b4e37fb8321 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 5 Dec 2018 10:22:41 -0800 Subject: [PATCH] Move programs into the executable location so native_loader can find them --- ci/test-stable.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index e0480e62d0..7602487677 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -50,5 +50,7 @@ echo --- ci/localnet-sanity.sh set -x # Assume |cargo build| has populated target/debug/ successfully. export PATH=$PWD/target/debug:$PATH + # Move programs into the executable location so native_loader can find them + scripts/install-native-programs.sh "$PWD"/target/debug USE_INSTALL=1 ci/localnet-sanity.sh )