From 2ca65d9ea1b986a17d7afecfeb19bf4de854b209 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Tue, 16 Jul 2002 22:04:04 +0000 Subject: [PATCH] Expand shell metacharacters (most importantly "~") in destination name. --- build/installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- 2.39.2