mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 15:49:36 +02:00
17 lines
401 B
Bash
Executable File
17 lines
401 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
((${BASH_VERSION%%.*} >= 4)) || { echo >&2 "$0: Error: Please upgrade Bash."; exit 1; }
|
|
|
|
set -euxo pipefail
|
|
|
|
cd build
|
|
|
|
cpack -C "${AUDACITY_BUILD_TYPE}" --verbose
|
|
|
|
if [[ "${OSTYPE}" == msys* && ${GIT_BRANCH} == release* ]]; then # Windows
|
|
cmake --build . --target innosetup --config "${AUDACITY_BUILD_TYPE}"
|
|
fi
|
|
|
|
# Remove the temporary directory
|
|
rm -Rf package/_CPack_Packages
|