...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# Make a directory for the binaries mkdir ~/WonderBinaries54 # Go into the directory cd ~/WonderBinaries54 # Download the binaries archive curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz # Decompress the archive tar -xzvf Wonder-Frameworks.tar.gz # Copy the frameworks to the default runtime path sudo cp -Rvf *.framework /Library/Frameworks |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# Make a directory for the binaries mkdir ~/WonderBinaries53 # Go into the directory cd ~/WonderBinaries53 # Download the binaries archive curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/WonderLegacy/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz # Decompress the archive tar -xzvf Wonder-Frameworks.tar.gz # Copy the frameworks to the default runtime path sudo cp -Rvf *.framework /Library/Frameworks |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# Navigate to the directory where you previously expanded the original binaries cd ~/WonderBinaries54 # Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done # Delete the contents of this working directory rm -r * # Download latest binaries archive curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/Wonder/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz # Expand the archive tar -xzvf Wonder-Frameworks.tar.gz # Install the frameworks sudo cp -Rvf *.framework /Library/Frameworks |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# Navigate to the directory where you previously expanded the original binaries cd ~/WonderBinaries53 # Delete the installed binary frameworks whose names match the nams of the frameworks in this working directory for FRAMEWORK in `echo *.framework`; do sudo rm -r /Library/Frameworks/${FRAMEWORK}; done # Delete the contents of this working directory rm -r * # Download latest binaries archive curl -L -O http://webobjectsjenkins.mdimensionwocommunity.com/hudsonorg/job/WonderLegacy/lastSuccessfulBuild/artifact/Root/distRoots/Wonder-Frameworks.tar.gz # Expand the archive tar -xzvf Wonder-Frameworks.tar.gz # Install the frameworks sudo cp -Rvf *.framework /Library/Frameworks |
...