msk: accept https: remotes

This commit is contained in:
K. Lange 2021-06-19 15:54:20 +09:00
parent 3fb82c1e85
commit 0a00c8944f
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ static int install_package(char * pkg) {
char * type = confreader_getd(msk_manifest, pkg, "type", "");
char * msk_remote = confreader_get(msk_manifest, pkg, "remote_path");
if (strstr(msk_remote, "http:") == msk_remote) {
if (strstr(msk_remote, "http:") == msk_remote || strstr(msk_remote, "https:") == msk_remote) {
char * source = confreader_get(msk_manifest, pkg, "source");
if (source) {
fprintf(stderr, "Download %s...\n", pkg);