Fixes issue #8

This commit is contained in:
Jonathan "Duke" Leto
2019-08-07 17:37:44 -07:00
parent 8b378455ce
commit 384e439296

View File

@@ -2,7 +2,10 @@
# Copyright (c) 2019 Hush developers
# set working directory to the location of this script
DIR="$( cd "$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )" && pwd )"
# readlink -f does not always exist
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
DIR="$( cd "$( dirname "$( readlink "${BASH_SOURCE[0]}" )" )" && pwd )"
cd $DIR
NAME=HUSH3