Startupscript fails im there are *.ini files in the current directory
---------------------------------------------------------------------
Key: COUCHDB-518
URL: https://issues.apache.org/jira/browse/COUCHDB-518
Project: CouchDB
Issue Type: Bug
Components: Infrastructure
Environment: r821494, FreeBSD
Reporter: Maximillian Dornseif
Priority: Minor
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.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.