From d98d4cad6ac7edf43fe1cf0eac05063c4b165464 Mon Sep 17 00:00:00 2001 From: Jeff Alyanak Date: Fri, 27 Dec 2019 19:25:41 -0500 Subject: [PATCH] Fixed default key directory (#46) * Fixed default key directory Script was not looking in the right place for the auto-generated key directory. This patch fixes issue #35. * Cleans up Key Directory Patch Key directory path fix was echoing the directory when run. --- src/licenseGen/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/licenseGen/run.sh b/src/licenseGen/run.sh index ebfdd58..6ea9662 100755 --- a/src/licenseGen/run.sh +++ b/src/licenseGen/run.sh @@ -4,7 +4,7 @@ DIR=`dirname "$0"` DIR=`exec 2>/dev/null;(cd -- "$DIR") && cd -- "$DIR"|| cd "$DIR"; unset PWD; /usr/bin/pwd || /bin/pwd || pwd` # Grab the absolute path to the default pfx location -cert_path="$DIR/.keys/cert.pfx" +cert_path="$DIR/../../.keys/cert.pfx" if [ "$#" -lt "1" ]; then echo "USAGE: $0 [License Gen args...]"