diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-12 11:10:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-12 11:10:16 -0300 |
commit | 97710f97ffac59111bf23668b3cf29a5cf9a6591 (patch) | |
tree | eede8536e4a971d37fa0aa003acf5614a2d47d99 | |
parent | 4b05e274fc1e76f80e779c772e16bc2b8e758142 (diff) | |
download | apps-97710f97ffac59111bf23668b3cf29a5cf9a6591.tar.gz apps-97710f97ffac59111bf23668b3cf29a5cf9a6591.tar.bz2 |
Inception: fix dirname
-rwxr-xr-x | inception | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ # Parameters BASENAME="`basename $0`" -DIRNAME="`dirname $0`" +DIRNAME="$(cd `dirname $0` &> /dev/null && pwd)" # Main if [ -z "$1" ] || [ "$1" == "init" ]; then |