Add helpful PATH command to copy from

This commit is contained in:
Michael Vines 2020-06-01 14:02:42 -07:00
parent 6ff52f7fde
commit 3a7b036eac
1 changed files with 7 additions and 2 deletions

View File

@ -132,7 +132,12 @@ if [[ -d target/perf-libs ]]; then
cp -a target/perf-libs "$installDir"/bin/perf-libs
fi
set -x
cp -fv target/$buildVariant/deps/libsolana*program.* "$installDir/bin/deps"
(
set -x
cp -fv target/$buildVariant/deps/libsolana*program.* "$installDir/bin/deps"
)
echo "Done after $SECONDS seconds"
echo
echo "To use these binaries:"
echo " export PATH=\"$installDir\"/bin:\"\$PATH\""