0db5493dd66e0280230196ffa620082b8cd69e0e hiram Thu May 23 16:18:46 2013 -0700 protect this procedure from the hgsql command refs #9104 diff --git src/utils/userApps/mkREADME.sh src/utils/userApps/mkREADME.sh index 1530378..21dc254 100755 --- src/utils/userApps/mkREADME.sh +++ src/utils/userApps/mkREADME.sh @@ -19,26 +19,26 @@ DESTDIR=$1 RESULT=$2 if [ ! -d "${DESTDIR}" ]; then echo "ERROR: specified destination directory \"${DESTDIR}\"" echo " does not exist." usage fi cd "${DESTDIR}" echo "================================================================" \ > "${RESULT}" -find . -mindepth 1 -type f | sed -e "s/^.\///; /mkREADME.sh/d" | sort | \ +find . -mindepth 1 -type f | grep -v -w hgsql | sed -e "s/^.\///; /mkREADME.sh/d" | sort | \ while read F do if [ -x "${F}" ]; then echo "======== ${F} ====================================" echo "================================================================" ./${F} echo "================================================================" fi done >> "${RESULT}" 2>&1