Move programs into the executable location so native_loader can find them

This commit is contained in:
Michael Vines 2018-12-05 10:22:41 -08:00
parent 59e6bd115e
commit 7336645501
1 changed files with 2 additions and 0 deletions

View File

@ -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
)