8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c6dc82 commit bf3f209Copy full SHA for bf3f209
ansible/files/admin_api_scripts/pg_upgrade_scripts/initiate.sh
@@ -189,7 +189,7 @@ function patch_wrappers {
189
OLD_WRAPPER_LIB_PATH=$(find "$PGLIBOLD" -name "wrappers*so" -print -quit)
190
OLD_LIB_FILE_NAME=$(basename "$OLD_WRAPPER_LIB_PATH")
191
192
- find /nix/store/ -name "wrappers*so" -print0 | while read -d $'\0' WRAPPERS_LIB_PATH; do
+ find /nix/store/ -name "wrappers*so" -print0 | while read -r -d $'\0' WRAPPERS_LIB_PATH; do
193
if [ -f "$WRAPPERS_LIB_PATH" ]; then
194
WRAPPERS_LIB_PATH_DIR=$(dirname "$WRAPPERS_LIB_PATH")
195
if [ "$WRAPPERS_LIB_PATH" != "$WRAPPERS_LIB_PATH_DIR/${OLD_LIB_FILE_NAME}" ]; then
0 commit comments