sourcegit/build/scripts/package.windows-portable.sh
leo f544333418
project: cleanup
* remove unused build scripts since we use github CI to automate releases
* rename build/ci to build/scripts
* cleanup solution file
2024-08-14 16:34:43 +08:00

19 lines
316 B
Bash
Executable file

#!/bin/bash
set -e
if [ -z "$VERSION" ]; then
echo "Provide the version as environment variable VERSION"
exit 1
fi
if [ -z "$RUNTIME" ]; then
echo "Provide the runtime as environment variable RUNTIME"
exit 1
fi
cd build
rm -rf SourceGit/*.pdb
zip "sourcegit_$VERSION.$RUNTIME.zip" -r SourceGit