Author: jhuntwork
Date: 2005-06-16 11:47:46 -0600 (Thu, 16 Jun 2005)
New Revision: 229
Modified:
trunk/scripts/unpack
Log:
No need to echo the error, which does that already
Modified: trunk/scripts/unpack
===================================================================
--- trunk/scripts/unpack 2005-06-16 17:26:14 UTC (rev 228)
+++ trunk/scripts/unpack 2005-06-16 17:47:46 UTC (rev 229)
@@ -1,6 +1,6 @@
#!/bin/bash
-TAR=`which tar` || echo "Error: Cannot find tar on your system" && exit 1
+TAR=`which tar` || exit 1
VRS=`$TAR --version | head -n 1 | awk '{print $4}' | cut -f2 -d'.'`
if [ -z $1 ] ; then
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page