-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #797 from ladyisatis/feature/release_fixes
Release build fixes
- Loading branch information
Showing
4 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
#!/bin/bash | ||
|
||
pushd .. | ||
pushd .. > /dev/null | ||
|
||
# Create TSH dir and its stage_strike_app folders | ||
mkdir -p TournamentStreamHelper/stage_strike_app/build | ||
|
||
mkdir TournamentStreamHelper | ||
cp -R assets \ | ||
layout \ | ||
user_data \ | ||
LICENSE \ | ||
TSH.exe \ | ||
TournamentStreamHelper/ | ||
|
||
zip -rv \ | ||
release.zip \ | ||
TournamentStreamHelper \ | ||
-x \ | ||
"TournamentStreamHelper/assets/versions.json" \ | ||
"TournamentStreamHelper/assets/contributors.txt" \ | ||
cp -R stage_strike_app/build \ | ||
TournamentStreamHelper/stage_strike_app/ | ||
|
||
rm -rf \ | ||
TournamentStreamHelper/assets/versions.json \ | ||
TournamentStreamHelper/assets/contributors.txt \ | ||
TournamentStreamHelper/layout/game_images \ | ||
TournamentStreamHelper/layout/game_screenshots | ||
|
||
zip -rv release-windows.zip TournamentStreamHelper | ||
|
||
rm -rf TournamentStreamHelper | ||
popd | ||
|
||
popd > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters