[PC-BSD Commits] r17542 - pcbsd/current/src-sh/pbi-manager
svn at pcbsd.org
svn at pcbsd.org
Mon Jul 2 05:43:02 PDT 2012
Author: kris
Date: 2012-07-02 12:43:01 +0000 (Mon, 02 Jul 2012)
New Revision: 17542
Modified:
pcbsd/current/src-sh/pbi-manager/pbi-manager
Log:
Fix a bug using the excluded file list.
Submitted by: pfSense
Modified: pcbsd/current/src-sh/pbi-manager/pbi-manager
===================================================================
--- pcbsd/current/src-sh/pbi-manager/pbi-manager 2012-07-02 12:41:58 UTC (rev 17541)
+++ pcbsd/current/src-sh/pbi-manager/pbi-manager 2012-07-02 12:43:01 UTC (rev 17542)
@@ -3905,9 +3905,9 @@
for excl in $PBI_EXCLUDELIST
do
if [ -z "$_excOpts" ] ; then
- _excOpts = "--exclude ${excl}"
+ _excOpts="--exclude ${excl}"
else
- _excOpts = "$_excOpts --exclude ${excl}"
+ _excOpts="$_excOpts --exclude ${excl}"
fi
done
fi
More information about the Commits
mailing list