You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
585 B

  1. #!/usr/bin/env bash
  2. CURDIR=`/bin/pwd`
  3. BASEDIR=$(dirname $0)
  4. ABSPATH=$(readlink -f $0)
  5. ABSDIR=$(dirname $ABSPATH)
  6. cd $ABSDIR/../../../../
  7. GOPATH=`pwd`
  8. cd $CURDIR
  9. bash $ABSDIR/build_package.sh "github.com/arnaucode/derosuite/cmd/derod"
  10. bash $ABSDIR/build_package.sh "github.com/arnaucode/derosuite/cmd/explorer"
  11. bash $ABSDIR/build_package.sh "github.com/arnaucode/derosuite/cmd/dero-wallet-cli"
  12. cd "${ABSDIR}/build"
  13. #all other platforms are okay with tar.gz
  14. find . -mindepth 1 -type d -not -name '*windows*' -exec tar --owner=dummy --group=dummy -cvzf {}.tar.gz {} \;
  15. cd $CURDIR