mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-31 00:54:59 +00:00
project: cleanup
* remove unused build scripts since we use github CI to automate releases * rename build/ci to build/scripts * cleanup solution file
This commit is contained in:
parent
db40a3f368
commit
f544333418
11 changed files with 3 additions and 936 deletions
19
build/scripts/package.windows-portable.sh
Executable file
19
build/scripts/package.windows-portable.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue