diff options
-rwxr-xr-x | lineageos-dl | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lineageos-dl b/lineageos-dl index e515cac..5038151 100755 --- a/lineageos-dl +++ b/lineageos-dl @@ -88,11 +88,14 @@ sha256sum -c $HASH sha256sum -c $RECOVERY_HASH # Verify build authenticity -# https://wiki.lineageos.org/verifying-builds.html -#git clone https://github.com/LineageOS/update_verifier -#cd update_verifier -#pip3 install -r requirements.txt -echo "$BASENAME: please verify build authenticity: https://wiki.lineageos.org/verifying-builds.html" +echo "$BASENAME: please verify build authenticity with a procedure like this:" +echo "" +echo "git clone https://github.com/LineageOS/update_verifier" +echo "cd update_verifier" +echo "pip3 install -r requirements.txt" +echo "python3 update_verifier.py lineageos_pubkey $DL/$FILE" +echo "" +echo "more info at https://wiki.lineageos.org/verifying-builds.html" # Teardown cd $CWD |