summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-02-20 10:57:16 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-02-20 10:57:16 (GMT)
commitfce16e70dff8503bfab2e734bca5a52d9057a3ee (patch)
treed14040d97a17d82a1b4a42c9db9ed11a52bb29d7
parentbbec87d314f5b706afda260d04f3180b1f848d6b (diff)
downloaduscxml-fce16e70dff8503bfab2e734bca5a52d9057a3ee.zip
uscxml-fce16e70dff8503bfab2e734bca5a52d9057a3ee.tar.gz
uscxml-fce16e70dff8503bfab2e734bca5a52d9057a3ee.tar.bz2
Don not include v8 in darwin prebuilds
-rwxr-xr-xcontrib/local/compress_and_upload_deps.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/local/compress_and_upload_deps.sh b/contrib/local/compress_and_upload_deps.sh
index 746bd84..5a2cea3 100755
--- a/contrib/local/compress_and_upload_deps.sh
+++ b/contrib/local/compress_and_upload_deps.sh
@@ -40,7 +40,11 @@ for FILE in ${PLATFORMS}; do
if [[ "$PLATFORM" == *windows* ]]; then
tar cvzf uscxml-prebuilt-${PLATFORM}.tgz --exclude='*/.DS_Store' --exclude='VERSION.txt' ${FILE}
else
- tar cvzf uscxml-prebuilt-${PLATFORM}.tgz --exclude='*/.DS_Store' --exclude='VERSION.txt' --exclude='lib/*_d.a' ${FILE}
+ if [[ "$PLATFORM" == *darwin* ]]; then
+ tar cvzf uscxml-prebuilt-${PLATFORM}.tgz --exclude='*/.DS_Store' --exclude='VERSION.txt' --exclude='lib/libv8*' --exclude='lib/*_d.a' ${FILE}
+ else
+ tar cvzf uscxml-prebuilt-${PLATFORM}.tgz --exclude='*/.DS_Store' --exclude='VERSION.txt' --exclude='lib/*_d.a' ${FILE}
+ fi
fi
scp uscxml-prebuilt-${PLATFORM}.tgz ${USCXML_PREBUILT_HOST}:${USCXML_PREBUILT_PATH}/${VERSION}
rm uscxml-prebuilt-${PLATFORM}.tgz