diff options
author | Donny Maasland <donny@unauthorizedaccess.nl> | 2019-08-10 13:09:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-10 13:09:41 +0200 |
commit | ff7f28f359405fe3332b056d1d0f991e845c338a (patch) | |
tree | 8aae3c3e7d94a147a687c1b4956dfda680b49fe9 /scripts/build-vmware-image | |
parent | 5130a5b3373bdf1c89f8e6da14360d3c433d6085 (diff) | |
download | vyos-build-ff7f28f359405fe3332b056d1d0f991e845c338a.tar.gz vyos-build-ff7f28f359405fe3332b056d1d0f991e845c338a.zip |
Fix default key path
Diffstat (limited to 'scripts/build-vmware-image')
-rwxr-xr-x | scripts/build-vmware-image | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-vmware-image b/scripts/build-vmware-image index dc680378..665d0f58 100755 --- a/scripts/build-vmware-image +++ b/scripts/build-vmware-image @@ -196,7 +196,7 @@ openssl sha1 *.vmdk *.ovf > vyos_vmware_image.mf # Convert the OVF to signed OVA... echo 'Converting the OVF to signed OVA...' -private_key=${PRIVATE_KEY_PATH:-"../../key/privatekey.pem"} +private_key=${PRIVATE_KEY_PATH:-"../key/privatekey.pem"} if [ ! -f ${private_key} ]; then echo 'Please put your key to "key/privatekey.pem" in repository root, or set PRIVATE_KEY_PATH to environment variables.' exit 1 |