[PC-BSD Commits] r5246 - pcbsd/trunk/pc-sysinstall/backend
svn at pcbsd.org
svn at pcbsd.org
Fri Dec 4 19:16:42 PST 2009
Author: kris
Date: 2009-12-04 19:16:42 -0800 (Fri, 04 Dec 2009)
New Revision: 5246
Modified:
pcbsd/trunk/pc-sysinstall/backend/functions-extractimage.sh
Log:
Fixed backend bug, need to echo the count number properly
Modified: pcbsd/trunk/pc-sysinstall/backend/functions-extractimage.sh
===================================================================
--- pcbsd/trunk/pc-sysinstall/backend/functions-extractimage.sh 2009-12-05 03:13:04 UTC (rev 5245)
+++ pcbsd/trunk/pc-sysinstall/backend/functions-extractimage.sh 2009-12-05 03:16:42 UTC (rev 5246)
@@ -14,7 +14,7 @@
# Check if we have a .count file, and echo it out for a front-end to use in progress bars
if [ -e "${INSFILE}.count" ]
then
- echo "INSTALLCOUNT: `${INSFILE}.count`"
+ echo "INSTALLCOUNT: `cat ${INSFILE}.count`"
fi
# Check if we are doing an upgrade, and if so use our exclude list
More information about the Commits
mailing list