We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71eeba commit aa6dbd6Copy full SHA for aa6dbd6
test/run_test
@@ -699,8 +699,8 @@ run_doc_test() {
699
for f in help.1 ; do
700
docker run --rm ${IMAGE_NAME} /bin/bash -c "cat /${f}" >${tmpdir}/$(basename ${f})
701
# Check whether the files include some important information
702
- for term in "POSTGRESQL\_ADMIN\_PASSWORD" volume 5432 ; do
703
- if ! cat ${tmpdir}/$(basename ${f}) | grep -F -q -e "${term}" ; then
+ for term in 'POSTGRESQL\\?_ADMIN\\?_PASSWORD' volume 5432 ; do
+ if ! cat ${tmpdir}/$(basename ${f}) | grep -E -q -e "${term}" ; then
704
echo "ERROR: File /${f} does not include '${term}'."
705
return 1
706
fi
0 commit comments