We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35ab79 commit 8ed20a9Copy full SHA for 8ed20a9
tasks/download.sh
@@ -12,7 +12,7 @@ else
12
curl -f -L -o "$PT_path" "$PT_source"
13
fi
14
15
-if [[ "$PT_check_download" != "true" ]]; then
+if [[ "$PT_check_download" == "false" ]]; then
16
exit 0
17
18
@@ -38,8 +38,8 @@ curl -f -L -o "${sigpath}" "${sigsource}"
38
echo "Downloaded tarball signature to ${sigpath}."
39
echo "Checking tarball signature at ${sigpath}..."
40
if gpg --verify "${sigpath}" "${PT_path}" | grep "Good signature" ; then
41
+ echo "Signature verification suceeded."
42
+else
43
echo "Signature verification failed, please re-run the installation."
44
exit 1
-else
- echo "Signature verification suceeded."
45
0 commit comments