From 353c09c570a4498cef4baf9a3f192e8bf8b911b1 Mon Sep 17 00:00:00 2001 From: Alexis Hancock Date: Mon, 14 Sep 2020 14:09:16 -0700 Subject: [PATCH] Fix typo --- edge.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edge.sh b/edge.sh index 63b3f16abbec..976cc85da869 100755 --- a/edge.sh +++ b/edge.sh @@ -9,14 +9,12 @@ # crx3-verify rsa 0 public.pem < $crx_cws # echo "CRX verified" -#Now remove unneeded pem file -rm public.pem VERSION=`python3.6 -c "import json ; print(json.loads(open('chromium/manifest.json').read())['version'])"` crx_cws="pkg/https-everywhere-$VERSION-cws.crx" crx_eff="pkg/https-everywhere-$VERSION-eff.crx" crx3-info rsa 0 < $crx_cws > public.pem - rsa 0 public.pem < $crx_cws +crx3-verify rsa 0 public.pem < $crx_cws echo "CRX verified" #Build Edge Zip File @@ -29,4 +27,6 @@ echo >&2 "Edge zip package has sha256sum: `openssl dgst -sha256 -binary "https-e mv https-everywhere-$VERSION-edge.zip pkg/https-everywhere-$VERSION-edge.zip echo "Created pkg/https-everywhere-$VERSION-edge.zip" + +#Now remove unneeded pem file rm public.pem \ No newline at end of file