mirror of
https://github.com/Rosalie241/RMG.git
synced 2026-07-11 01:24:01 +02:00
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
script_dir="$(dirname "$0")"
|
|
toplvl_dir="$(realpath "$script_dir/../../")"
|
|
build_config="${1:-Debug}"
|
|
version="$(git describe --always)"
|
|
|
|
pushd "$toplvl_dir/Bin/$build_config"
|
|
|
|
zip -r "$toplvl_dir/Bin/RMG-linux-$version.zip" *
|
|
|
|
popd
|