diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2019-09-09 08:56:33 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2019-09-09 09:02:39 -0400 |
commit | 9668b02f80425dc72116101cb368c6ac1cc210a1 (patch) | |
tree | b319d9de871eb6cdfe9ed0a36cb853d7322cefd4 /src | |
parent | 7d49803259de7514e16dfdf2b6a36e7b514f0505 (diff) | |
download | postgresql-9668b02f80425dc72116101cb368c6ac1cc210a1.tar.gz postgresql-9668b02f80425dc72116101cb368c6ac1cc210a1.zip |
Prevent msys2 conversion of "cmd /c" switch to a file path
Modern versions of msys2 have changed the treatment of "cmd /c" so that
the runtime will try to convert the switch to a native file path. This
patch adds a setting to inhibit that behaviour.
Discussion: https://postgr.es/m/3227042f-cfcc-745a-57dd-fb8c471f8ddf@2ndQuadrant.com
Backpatch to all live branches.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/test.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/test.sh b/src/bin/pg_upgrade/test.sh index 34b363dce7d..9119bf66553 100644 --- a/src/bin/pg_upgrade/test.sh +++ b/src/bin/pg_upgrade/test.sh @@ -244,8 +244,11 @@ esac pg_ctl start -l "$logdir/postmaster2.log" -o "$POSTMASTER_OPTS" -w +# In the commands below we inhibit msys2 from converting the "/c" switch +# in "cmd /c" to a file system path. + case $testhost in - MINGW*) cmd /c analyze_new_cluster.bat ;; + MINGW*) MSYS2_ARG_CONV_EXCL=/c cmd /c analyze_new_cluster.bat ;; *) sh ./analyze_new_cluster.sh ;; esac @@ -258,7 +261,7 @@ if [ -n "$pg_dumpall2_status" ]; then fi case $testhost in - MINGW*) cmd /c delete_old_cluster.bat ;; + MINGW*) MSYS2_ARG_CONV_EXCL=/c cmd /c delete_old_cluster.bat ;; *) sh ./delete_old_cluster.sh ;; esac |