2
0
Fork 0
mirror of https://github.com/Huntereb/Awoo-Installer synced 2025-02-19 05:08:24 +00:00

Use http, not https

This commit is contained in:
Huntereb 2019-10-29 22:23:16 -04:00
parent 6909583c72
commit 351ae47276
2 changed files with 2 additions and 2 deletions
config
source/util

View file

@ -1,4 +1,4 @@
[settings]
ignoreReqVers=1
gayMode=0
sigPatchesUrl=https://github.com/Huntereb/Awoo-Installer/releases/download/SignaturePatches/patches.zip
sigPatchesUrl=http://github.com/Huntereb/Awoo-Installer/releases/download/SignaturePatches/patches.zip

View file

@ -6,7 +6,7 @@
namespace inst::config {
const std::string appDir = "sdmc:/switch/Awoo-Installer";
const std::string configPath = appDir + "/config.ini";
std::string sigPatchesUrl = "https://github.com/Huntereb/Awoo-Installer/releases/download/SignaturePatches/patches.zip";
std::string sigPatchesUrl = "http://github.com/Huntereb/Awoo-Installer/releases/download/SignaturePatches/patches.zip";
bool ignoreReqVers = true;
bool gayMode = false;