...
Open a terminal session and type the following easy commands. Choose the one for your WebObjects version.
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.4.X |
---|
linenumbers | true |
---|
|
# Make a directory for the binaries
mkdir ~/WonderBinaries54
# Go into the directory
cd ~/WonderBinaries54
# Download the binaries archive
curl -L -O http://webobjects.mdimension.com/hudson/job/Wonder54/lastSuccessfulBuild/artifact/dist/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 |
---|
language | bash |
---|
title | Procedure for WebObjects 5.3.X |
---|
linenumbers | true |
---|
|
# Make a directory for the binaries
mkdir ~/WonderBinaries53
# Go into the directory
cd ~/WonderBinaries53
# Download the binaries archive
curl -L -O http://webobjects.mdimension.com/hudson/job/Wonder53/lastSuccessfulBuild/artifact/dist/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
|
...
Assuming you have the same working directory as above whn you did a new installation
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.4.X |
---|
linenumbers | true |
---|
|
# 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://webobjects.mdimension.com/hudson/job/Wonder54/lastSuccessfulBuild/artifact/dist/Wonder-Frameworks.tar.gz
# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks
|
Code Block |
---|
language | bash |
---|
title | Procedure for WebObjects 5.3.X |
---|
linenumbers | true |
---|
|
# 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://webobjects.mdimension.com/hudson/job/Wonder53/lastSuccessfulBuild/artifact/dist/Wonder-Frameworks.tar.gz
# Expand the archive
tar -xzvf Wonder-Frameworks.tar.gz
# Install the frameworks
sudo cp -Rvf *.framework /Library/Frameworks
|
...