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:
-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