Browse Source

Fixes issue #8

warmup
Jonathan "Duke" Leto 5 years ago
parent
commit
384e439296
  1. 5
      src/hushd

5
src/hushd

@ -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

Loading…
Cancel
Save