projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9469ebc
)
Allow MSYS as well as MINGW in Msys uname
author
Andrew Dunstan
<andrew@dunslane.net>
Fri, 4 May 2018 18:54:04 +0000
(14:54 -0400)
committer
Andrew Dunstan
<andrew@dunslane.net>
Fri, 4 May 2018 19:05:28 +0000
(15:05 -0400)
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.
contrib/pg_upgrade/test.sh
patch
|
blob
|
blame
|
history
diff --git
a/contrib/pg_upgrade/test.sh
b/contrib/pg_upgrade/test.sh
index 2072011bfc3d4a6b88455cd08d78dd2e0c6abc47..b77e6129d30738be8f367d7e7d3e3b3d82fbb8b5 100644
(file)
--- a/
contrib/pg_upgrade/test.sh
+++ b/
contrib/pg_upgrade/test.sh
@@
-32,7
+32,7
@@
standard_initdb() {
testhost=`uname -s`
case $testhost in
- MINGW*)
+ MINGW*
|MSYS*
)
LISTEN_ADDRESSES="localhost"
PGHOST=localhost
;;