mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-10-31 13:03:20 -07:00
f544333418
* remove unused build scripts since we use github CI to automate releases * rename build/ci to build/scripts * cleanup solution file
19 lines
316 B
Bash
Executable file
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
|