Merge branche make
[hvlinux.git] / stage2 / hv-utilities / tarbz2
index e2b50c9..e7a6d93 100755 (executable)
@@ -12,6 +12,7 @@ if [ $# -ne 1 ]; then
 fi
 
 DIR=${1%/}
+BASE=$(basename ${DIR})
 
 # Checking if directory exists.
 if [ ! -d ${DIR} ]; then
@@ -20,6 +21,6 @@ if [ ! -d ${DIR} ]; then
 fi
     
 # Decompressing file to standard output and piping result to bzip2
-tar cvf - ${DIR} | bzip2 -9 > ${DIR}.tar.bz2
+tar cvf - ${DIR} | bzip2 -9 > ${BASE}.tar.bz2
 
 exit $?