Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
-
r821494, FreeBSD
Description
Line 123 of /usr/local/bin/couchdb reads:
for file in `find "$1" -mindepth 1 -maxdepth 1 -type f -name *.ini`; do
"*.ini" will get expanded to filenames if there in a *.ini file in the current directory.
for file in `find "$1" -mindepth 1 -maxdepth 1 -type f -name '*.ini'`; do
(note the quouting) works regardless of the current directory.