From: Martin Mares Date: Tue, 16 Jul 2002 22:04:04 +0000 (+0000) Subject: Expand shell metacharacters (most importantly "~") in destination name. X-Git-Tag: holmes-import~1379 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=2ca65d9ea1b986a17d7afecfeb19bf4de854b209;p=libucw.git Expand shell metacharacters (most importantly "~") in destination name. --- diff --git a/build/installer b/build/installer index 607c9f74..02eb2552 100755 --- a/build/installer +++ b/build/installer @@ -1,6 +1,6 @@ #!/bin/sh set -e -DEST=$1 +DEST=`eval echo $1` echo "Installing to $DEST" if [ ! -d $DEST/bin ] ; then echo "Creating $DEST and the whole directory hierarchy under it."