diff --git a/TravisScripts/install.sh b/TravisScripts/install.sh index 1ad255f6..4772c29d 100644 --- a/TravisScripts/install.sh +++ b/TravisScripts/install.sh @@ -10,10 +10,6 @@ echo 'Downloading StandardAssets-2017.2.0f3.pkg:' curl --retry 5 -o Unity_StandardAssets.pkg https://download.unity3d.com/download_unity/a9f86dcd79df/MacStandardAssetsInstaller/StandardAssets-2017.3.0f3.pkg if [ $? -ne 0 ]; then { echo "Unity StandardAssets Download failed"; exit $?; } fi -echo 'Downloading iOS build support:' -curl --retry 5 -o Unity_iOS.pkg https://beta.unity3d.com/download/a9f86dcd79df/MacEditorTargetInstaller/UnitySetup-iOS-Support-for-Editor-2017.3.0f3.pkg -if [ $? -ne 0 ]; then { echo "iOS Download failed"; exit $?; } fi - # Install echo 'Installing Unity.pkg' sudo installer -dumplog -package Unity.pkg -target / @@ -31,7 +27,4 @@ echo === Done === echo 'Installing StandardAssets-2017.2.0f3.pkg' sudo installer -dumplog -package Unity_StandardAssets.pkg -target / -echo 'Installing Unity_iOS.pkg' -sudo installer -dumplog -package Unity_iOS.pkg -target / -