fix: secure links in usage output

This commit is contained in:
Connor Tumbleson 2020-11-28 16:18:54 -05:00
parent 693d8d1fbf
commit a91aad461e
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
1 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@ public class Main {
"Copyright 2010 Ryszard Wiśniewski <brut.alll@gmail.com>\n" +
"Copyright 2010 Connor Tumbleson <connor.tumbleson@gmail.com>" );
if (isAdvanceMode()) {
System.out.println("Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)\n");
System.out.println("Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)\n");
}else {
System.out.println("");
}
@ -563,7 +563,7 @@ public class Main {
// print out more information
System.out.println(
"For additional info, see: http://ibotpeaches.github.io/Apktool/ \n"
"For additional info, see: https://ibotpeaches.github.io/Apktool/ \n"
+ "For smali/baksmali info, see: https://github.com/JesusFreke/smali");
}