From 563c0fdbdf8b25b15085967da0f7099450f4e93d Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Thu, 28 May 2020 23:29:13 -0600 Subject: [PATCH] don't use --insecure flag on curl download --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index ec514b1..ceafb9b 100644 --- a/src/install.sh +++ b/src/install.sh @@ -17,7 +17,7 @@ pip3 install awscli # install go-cron apk add curl -curl -L --insecure https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron +curl -L https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron chmod u+x /usr/local/bin/go-cron apk del curl