Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for downloading Pharo-6.0 #171

Merged
merged 1 commit into from
Mar 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions bin/private/downloadSmalltalkClient
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,20 @@ case $version in
$cmd get.pharo.org/50 | bash
esac
;;
Pharo6.0)
case "$PLATFORM" in
MSYS_NT*|MINGW32_NT*|MINGW64_NT**)
cmd=`which curl`
$cmd -O http://files.pharo.org/platform/Pharo6.0-win.zip
unzip -j -q Pharo6.0-win.zip
mv Pharo6.0.image Pharo.image
mv Pharo6.0.changes Pharo.changes
;;
*)
$cmd get.pharo.org/vm60 | bash
$cmd get.pharo.org/60 | bash
esac
;;
*) usage; exit_1_banner "Unknown Pharo version $version" ;;
esac
if [ -e "./Pharo.exe" ] ; then
Expand Down