Merge pull request #983 from adam111316/master

config/path: removed erroneous brackets
This commit is contained in:
Stephan Raue 2012-07-17 09:30:17 -07:00
commit 5a7d126301

View File

@ -56,7 +56,7 @@ SED="sed -i"
if [ -n "$1" ]; then
PKG_DIR=`find $PACKAGES -type d -name $1 2>/dev/null`
if [[ $PKG_DIR = *$'\n'* ]]; then
if [ $PKG_DIR = *$'\n'* ]; then
echo -e "Error - multiple package folders:\n$PKG_DIR"
exit 1
fi