cameo-build/build.sh

9 lines
155 B
Bash
Raw Normal View History

2022-01-02 15:08:16 +00:00
#!/usr/bin/env bash
make
mkdir -p build && cd build
if [ -n "$RELEASE_VERSION" ]; then
../packaging/package-all.sh ${RELEASE_VERSION} $(pwd)
fi
cd ..