mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-30 16:18:49 +01:00
* 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
6 lines
318 B
Bash
Executable File
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 |