summaryrefslogtreecommitdiff
path: root/scripts/build-vmware-image
diff options
context:
space:
mode:
authorDonny Maasland <donny@unauthorizedaccess.nl>2019-08-10 13:09:41 +0200
committerGitHub <noreply@github.com>2019-08-10 13:09:41 +0200
commitff7f28f359405fe3332b056d1d0f991e845c338a (patch)
tree8aae3c3e7d94a147a687c1b4956dfda680b49fe9 /scripts/build-vmware-image
parent5130a5b3373bdf1c89f8e6da14360d3c433d6085 (diff)
downloadvyos-build-ff7f28f359405fe3332b056d1d0f991e845c338a.tar.gz
vyos-build-ff7f28f359405fe3332b056d1d0f991e845c338a.zip
Fix default key path
Diffstat (limited to 'scripts/build-vmware-image')
-rwxr-xr-xscripts/build-vmware-image2
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