diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 18:39:11 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-16 18:39:11 (EDT) |
commit | 044985f6987c03811b9782d38caed62dc0c5cb48 (patch) | |
tree | 23b5b9b38f109e77d56eeaa7b8fbea5120718868 /src/profile | |
parent | c89ed39fc853fbdbb2c506f10389e22ec5218d7d (diff) |
profile_get_cert_path(): Change to profile_get_cert_url()
Diffstat (limited to 'src/profile')
-rw-r--r-- | src/profile/proteanos.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/profile/proteanos.sh b/src/profile/proteanos.sh index 9f7b620..321f8cc 100644 --- a/src/profile/proteanos.sh +++ b/src/profile/proteanos.sh @@ -158,9 +158,11 @@ prof_proteanos_feeds() done } -prof_proteanos_get_cert_path() +prof_proteanos_get_cert_url() { - printf 'archive.cert' + local mirror="${1}" + + printf '%s/archive.cert' "${mirror}" return 0 } |