Skip to content

Commit

Permalink
Merge pull request #129 from GsDevKit/dev
Browse files Browse the repository at this point in the history
Fix for Issues #126 and #127
  • Loading branch information
dalehenrich committed Jun 15, 2016
2 parents c6fe23c + 9d56801 commit 2f17276
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bin/attachForeignStone
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ HELP
}

PLATFORM="`uname -sm | tr ' ' '-'`"
if [[ "$PLATFORM" == MINGW32_NT* || "$PLATFORM" == MSYS_NT* ]] ; then
if [[ "$PLATFORM" == MINGW32_NT* || "$PLATFORM" == MSYS_NT* || "$PLATFORM" == MINGW64_NT* ]] ; then
exit_1_banner "This script is a server-only script and cannot be used on Windows"
fi

Expand Down
2 changes: 1 addition & 1 deletion bin/devKitCommandLine
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fi
PLATFORM="`uname -sm | tr ' ' '-'`"

case "$PLATFORM" in
MSYS_NT*|MINGW32_NT*)
MSYS_NT*|MINGW32_NT*|MINGW64_NT*)
vmArgs="--headless"
if [ "$interactive" = "true" ] ; then
vmArgs=""
Expand Down
4 changes: 2 additions & 2 deletions bin/downloadGemStone
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ case "$PLATFORM" in
# Linux looks OK
gsvers="GemStone64Bit${vers}-x86_64.Linux"
;;
MSYS_NT*|MINGW32_NT*)
MSYS_NT*|MINGW32_NT*|MINGW64_NT*)
if [ "$vers" \< "3.3.0" ] ; then
gsvers="GemBuilderC${vers}-x86.Windows_NT"
else
Expand Down Expand Up @@ -135,7 +135,7 @@ popd >& /dev/null


case "$PLATFORM" in
MSYS_NT*|MINGW32_NT*) #do nothing
MSYS_NT*|MINGW32_NT*|MINGW64_NT*) #do nothing
;;
*)
# Copy initial system.conf into the Seaside data directory
Expand Down
4 changes: 2 additions & 2 deletions bin/private/installGci
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ case "$PLATFORM" in
gsvers="GemStone64Bit${vers}-x86_64.Linux"; libext="so" ;;
Darwin-i386)
gsvers="GemStone64Bit${vers}-i386.Darwin"; libext="dylib" ;;
MSYS_NT*|MINGW32_NT*)
MSYS_NT*|MINGW32_NT*|MINGW64_NT*)
if [ "$vers" \< "3.3.0" ] ; then
gsvers="GemBuilderC${vers}-x86.Windows_NT"
else
Expand All @@ -87,7 +87,7 @@ case "$clientType" in
case "$PLATFORM" in
Linux-x86_64) targetLocation="${directoryPath}/pharo-vm" ;;
Darwin-i386) targetLocation="${directoryPath}/pharo-vm/Pharo.app/Contents/MacOS/Plugins" ;;
MSYS_NT*|MINGW32_NT*)
MSYS_NT*|MINGW32_NT*|MINGW64_NT*)
case "$vers" in
2.4.*|3.0.*|3.1.*) sourceLocation="${gs_product}/bin" ;;
*) sourceLocation="${gs_product}/bin32" ;;
Expand Down
2 changes: 1 addition & 1 deletion bin/utils/installOsPrereqs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ else
Linux-x86_64)
# Linux looks OK
;;
MSYS_NT*|MINGW32_NT*)
MSYS_NT*|MINGW32_NT*|MINGW64_NT*)
# If we are running a bash script on windows, then we are done
echo "No os prereqs installed for windows"
exit_0_banner "...finished"
Expand Down
2 changes: 1 addition & 1 deletion shared/bin/defGsDevKit.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ -e "${GS_SYS_LOCAL}/gsdevkit_bin/defSharedGitDevKit.env" ] ; then
source "${GS_SYS_LOCAL}/gsdevkit_bin/defSharedGitDevKit.env"
fi
PLATFORM="`uname -sm | tr ' ' '-'`"
if [[ "$PLATFORM" == MINGW32_NT* || "$PLATFORM" == MSYS_NT* ]] ; then
if [[ "$PLATFORM" == MINGW32_NT* || "$PLATFORM" == MSYS_NT* || "$PLATFORM" == MINGW64_NT* ]] ; then
source "${GS_SYS_DEFAULT}/gsdevkit_bin/defSharedGitDevKit_win.env"
if [ -e "${GS_SYS_LOCAL}/gsdevkit_bin/defSharedGitDevKit_win.env" ] ; then
source "${GS_SYS_LOCAL}/gsdevkit_bin/defSharedGitDevKit_win.env"
Expand Down
2 changes: 1 addition & 1 deletion sys/default/server/home/utils/upgrade.ston
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TDRawGatewayNode{#name:'upgrade',#contents:'(TDComposedDirectoryNode
pathComposedDirectoryNodeNamed: \'upgrade\'
topez: self topez)
" addPathNode: \'/sys/stone/upgrade\';" "uncomment (and use a recent version of tODE in all stoness, if you need to have stone-specific upgrade scripts"
addPathNode: \'/sys/stone/upgrade\';
addPathNode: \'/sys/local/server/upgrade\';
addPathNode: \'/sys/default/server/upgrade\';
yourself'}

0 comments on commit 2f17276

Please sign in to comment.