Skip to content

Commit

Permalink
scripts/generate_tarball.sh: only copy cleos-v2 and keosd binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnx committed Nov 5, 2019
1 parent ddce139 commit a5dc301
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/generate_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ mkdir -p ${EOS_PREFIX}/licenses/eosio
#mkdir -p ${EOS_PREFIX}/cmake
#mkdir -p ${EOS_PREFIX}/scripts

# install binaries
cp -R ${BUILD_DIR}/bin/* ${EOS_PREFIX}/bin || exit 1
# install binaries
cp ${BUILD_DIR}/bin/cleos-v2 ${EOS_PREFIX}/bin || exit 1
cp ${BUILD_DIR}/bin/keosd ${EOS_PREFIX}/bin || exit 1

# install licenses
cp -R ${BUILD_DIR}/licenses/eosio/* ${EOS_PREFIX}/licenses || exit 1
Expand Down

0 comments on commit a5dc301

Please sign in to comment.