Files
google-apis-rs/.docker-build-cli.sh
Sebastian Thiel c248301951 feat(deploy): simple osx deploy script
* added simple script to build tar archive with all debug/release
  binaries.
* slightly improved docker script, even though it would need additional
  work. For now, I use the cloud VM anyway
2015-04-26 19:08:01 +02:00

6 lines
318 B
Bash
Executable File

#!/bin/sh
# For execution on docker build image only !
# make cargo-cli ARGS="build --release"
# DEBUG: only try to build a small CLI for now
make discovery1-cli-cargo ARGS="build --release"
find gen -executable -type f -path "*/release/*" -not \( -name "*.*" -or -name "*script*" \) | xargs -J % cp -v % /build-result