mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 10:22:48 +01:00
10 lines
228 B
Bash
Executable File
10 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
for config in debug release release_dev
|
|
do
|
|
cd "${APPVEYOR_BUILD_FOLDER}/src_rebuild/bin/${config^}"
|
|
cp -R ${APPVEYOR_BUILD_FOLDER}/data/* ./
|
|
tar -czf "REDRIVER2_${config^}.tar.gz" *
|
|
done
|