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>2013-06-17 16:27:31 +0400
committerdaid <daid303@gmail.com>2013-06-17 16:27:31 +0400
commitf83607e546632592d7b44bc0b9246a062f4a8686 (patch)
treed0242bca2a199ff8ea1654bda322bdedde152c62
parent09f0376f837a47f7aefa0579fa5f9c4b87310345 (diff)
parentd625ea9c5a3ea124734c901bf65ff9461bcadf04 (diff)
Merge branch 'SteamEngine' of github.com:daid/Cura into SteamEngine
-rwxr-xr-xpackage.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/package.sh b/package.sh
index ff42fa3476..8f349cd249 100755
--- a/package.sh
+++ b/package.sh
@@ -17,7 +17,7 @@ BUILD_TARGET=${1:-all}
##Do we need to create the final archive
ARCHIVE_FOR_DISTRIBUTION=1
##Which version name are we appending to the final archive
-BUILD_NAME=13.05.2
+BUILD_NAME=13.06.2
TARGET_DIR=Cura-${BUILD_NAME}-${BUILD_TARGET}
##Which versions of external programs to use
@@ -105,7 +105,10 @@ if [ "$BUILD_TARGET" = "darwin" ]; then
#Add cura version file (should read the version from the bundle with pyobjc, but will figure that out later)
echo $BUILD_NAME > scripts/darwin/dist/Cura.app/Contents/Resources/version
- cp CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
+ rm -rf CuraEngine
+ git clone https://github.com/Ultimaker/CuraEngine
+ make -C CuraEngine
+ cp CuraEngine/CuraEngine scripts/darwin/dist/Cura.app/Contents/Resources/CuraEngine
cd scripts/darwin