diff --git a/src/CoreOS.xcodeproj/project.xcworkspace/xcuserdata/rimas1.xcuserdatad/UserInterfaceState.xcuserstate b/src/CoreOS.xcodeproj/project.xcworkspace/xcuserdata/rimas1.xcuserdatad/UserInterfaceState.xcuserstate index fdfddbf..5b4f22d 100644 Binary files a/src/CoreOS.xcodeproj/project.xcworkspace/xcuserdata/rimas1.xcuserdatad/UserInterfaceState.xcuserstate and b/src/CoreOS.xcodeproj/project.xcworkspace/xcuserdata/rimas1.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/src/CoreOS/CoreOS-Info.plist b/src/CoreOS/CoreOS-Info.plist index ae01943..87a45ed 100644 --- a/src/CoreOS/CoreOS-Info.plist +++ b/src/CoreOS/CoreOS-Info.plist @@ -17,9 +17,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.3 + 1.5.4 CFBundleVersion - 541 + 544 LSApplicationCategoryType public.app-category.utilities LSMinimumSystemVersion diff --git a/src/functions.sh b/src/functions.sh index 6e6bcc8..bc688a8 100755 --- a/src/functions.sh +++ b/src/functions.sh @@ -174,8 +174,15 @@ DOCKER_VERSION=$(~/bin/corectl ssh core-01 'docker version' | grep 'Version:' | # check if the binary exists if [ ! -f ~/coreos-osx/bin/docker ]; then cd ~/coreos-osx/bin + echo " " echo "Downloading docker $DOCKER_VERSION client for macOS" - curl -o ~/coreos-osx/bin/docker https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION + curl -o ~/coreos-osx/bin/docker.tgz https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION.tgz + # tarball with directory docker containing docker executable + tar -xzf docker.tgz + mv docker dockerdir + mv dockerdir/docker . + rm docker.tgz + rmdir -p dockerdir # Make it executable chmod +x ~/coreos-osx/bin/docker osx_clients_upgrade=1 @@ -186,8 +193,15 @@ else if [ $MATCH -eq 0 ]; then # the version is different cd ~/coreos-osx/bin + echo " " echo "Downloading docker $DOCKER_VERSION client for macOS" - curl -o ~/coreos-osx/bin/docker https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION + curl -o ~/coreos-osx/bin/docker.tgz https://get.docker.com/builds/Darwin/x86_64/docker-$DOCKER_VERSION.tgz + # tarball with directory docker containing docker executable + tar -xzf docker.tgz + mv docker dockerdir + mv dockerdir/docker . + rm docker.tgz + rmdir -p dockerdir # Make it executable chmod +x ~/coreos-osx/bin/docker osx_clients_upgrade=1