mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2025-12-31 16:44:24 +01:00
Please note that docker build script is still in debug mode, this issue will remind me about it: #72 Fixes #71
6 lines
311 B
Bash
Executable File
6 lines
311 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 cp -v /build-result |