mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
12 lines
141 B
Bash
Executable file
12 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o
|
|
set -u
|
|
set pipefail
|
|
|
|
cd build
|
|
|
|
rm -rf SourceGit/*.pdb
|
|
|
|
zip "sourcegit_$VERSION.$RUNTIME.zip" -r SourceGit
|