Commit 608a7101 authored by Andrew Dunstan's avatar Andrew Dunstan

Allow MSYS as well as MINGW in Msys uname

Msys2's uname -s outputs a string beginning MSYS rather than MINGW as is
output by Msys. Allow either in pg_upgrade's test.sh.

Backpatch to all live branches.
parent b45f6613
...@@ -34,7 +34,7 @@ standard_initdb() { ...@@ -34,7 +34,7 @@ standard_initdb() {
testhost=`uname -s` testhost=`uname -s`
case $testhost in case $testhost in
MINGW*) MINGW*|MSYS*)
LISTEN_ADDRESSES="localhost" LISTEN_ADDRESSES="localhost"
PGHOST=localhost PGHOST=localhost
;; ;;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment