Skip to content

Commit ad5f630

Browse files
Update AAX build script
1 parent 4f918bb commit ad5f630

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

Plugin/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ endif()
8484
include(modules/cmake/VersionInfo.cmake)
8585
target_compile_definitions(CHOWTapeModel
8686
PUBLIC
87-
JUCE_DISPLAY_SPLASH_SCREEN=0
8887
JUCE_REPORT_APP_USAGE=0
8988
JUCE_WEB_BROWSER=0
9089
JUCE_USE_CURL=0

Scripts/aax_builds.sh

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,15 @@ cp -R "$aax_location" "$aax_target_dir/CHOWTapeModel.aaxplugin"
120120
if [[ "$*" = *deploy* ]]; then
121121
set +e
122122

123-
ssh "jatin@ccrma-gate.stanford.edu" "rm -r ~/aax_builds/${TARGET_DIR}/CHOWTapeModel.aaxplugin"
124-
scp -r "$aax_location" "jatin@ccrma-gate.stanford.edu:~/aax_builds/${TARGET_DIR}/"
123+
if [[ "$OSTYPE" == "darwin"* ]]; then
124+
ssh "jatin@ccrma-gate.stanford.edu" "rm -r ~/aax_builds/${TARGET_DIR}/CHOWTapeModel.aaxplugin"
125+
scp -r "$aax_location" "jatin@ccrma-gate.stanford.edu:~/aax_builds/${TARGET_DIR}/"
126+
else
127+
cd ~/ChowDSP/aax-builds-win64
128+
git pull
129+
cp -r "$aax_target_dir/CHOWTapeModel.aaxplugin" .
130+
git add .
131+
git commit -am "Update ChowTape AAX build"
132+
git push
133+
fi
125134
fi

0 commit comments

Comments
 (0)