summaryrefslogtreecommitdiffstats
path: root/contrib/local
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-12 15:22:45 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-12 15:22:45 (GMT)
commit6d0622c0bb8f0e52589c82252f2cc1eb847ad9bf (patch)
treecbb87d3447f0972fe61d7db8454804035d4f1184 /contrib/local
parent9e7e73725c20fbc95dccd9c1477a4d7c907be321 (diff)
downloaduscxml-6d0622c0bb8f0e52589c82252f2cc1eb847ad9bf.zip
uscxml-6d0622c0bb8f0e52589c82252f2cc1eb847ad9bf.tar.gz
uscxml-6d0622c0bb8f0e52589c82252f2cc1eb847ad9bf.tar.bz2
Started to fix Windows compilation issues
Diffstat (limited to 'contrib/local')
-rwxr-xr-xcontrib/local/compress_and_upload_deps.sh14
1 files changed, 10 insertions, 4 deletions
diff --git a/contrib/local/compress_and_upload_deps.sh b/contrib/local/compress_and_upload_deps.sh
index 641219d..9f64118 100755
--- a/contrib/local/compress_and_upload_deps.sh
+++ b/contrib/local/compress_and_upload_deps.sh
@@ -22,11 +22,17 @@ if [ ! -d $1 ]; then
exit
fi
-PLATFORM=`basename $1`
VERSION=$2
cd ../prebuilt
-tar cvzf uscxml-prebuilt-${PLATFORM}.tgz ${PLATFORM}
-scp uscxml-prebuilt-${PLATFORM}.tgz ${UMUNDO_PREBUILT_HOST}/${VERSION}
-rm uscxml-prebuilt-${PLATFORM}.tgz \ No newline at end of file
+PLATFORMS=`find . -maxdepth 1 -type d -regex ./[^\.].*`
+for FILE in ${PLATFORMS}; do
+ PLATFORM=`basename $FILE`
+ if [ "$PLATFORM" != "include" ]; then
+ echo $FILE
+ tar cvzf uscxml-prebuilt-${PLATFORM}.tgz ${FILE}
+ scp uscxml-prebuilt-${PLATFORM}.tgz ${UMUNDO_PREBUILT_HOST}/${VERSION}
+ rm uscxml-prebuilt-${PLATFORM}.tgz
+ fi
+done \ No newline at end of file