Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaid <daid303@gmail.com>2012-07-09 16:26:51 +0400
committerdaid <daid303@gmail.com>2012-07-09 16:26:51 +0400
commit72dae770a34fb6102c94c439c4a75fab9bfcd06c (patch)
tree6ed6b965333c5d01cee9c91377a608db2785fbb2
parent5522a9a5884fc5bad82e1cd4beb7df76ff4fb33e (diff)
Added "all" to package targets12.071.12.07
-rwxr-xr-xpackage.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/package.sh b/package.sh
index 5845d6fd12..5e6192b7cc 100755
--- a/package.sh
+++ b/package.sh
@@ -7,9 +7,9 @@
# CONFIGURATION
#############################
-
##Select the build target
-BUILD_TARGET=${1:-win32}
+BUILD_TARGET=${1:-all}
+#BUILD_TARGET=win32
#BUILD_TARGET=linux
#BUILD_TARGET=osx64
@@ -39,6 +39,12 @@ function checkTool
#############################
# Actual build script
#############################
+if [ "$BUILD_TARGET" = "all" ]; then
+ $0 win32
+ $0 linux
+ $0 osx64
+ exit
+fi
# Change working directory to the directory the script is in
# http://stackoverflow.com/a/246128