From d36a6b2d1075d66a41d4f9edbee570e54f9210d8 Mon Sep 17 00:00:00 2001 From: billz Date: Mon, 2 Mar 2020 07:41:25 +0000 Subject: [PATCH] Update mkcert release version. Addresses #513 --- installers/mkcert.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installers/mkcert.sh b/installers/mkcert.sh index fe575faf..73487b65 100755 --- a/installers/mkcert.sh +++ b/installers/mkcert.sh @@ -8,6 +8,7 @@ certname=$HOSTNAME."local" lighttpd_ssl="/etc/lighttpd/ssl" lighttpd_conf="/etc/lighttpd/lighttpd.conf" webroot_dir="/var/www/html" +mkcert_version="1.4.1" ### NOTE: all the below functions are overloadable for system-specific installs @@ -53,7 +54,7 @@ function config_installation() { # Installs pre-built mkcert binary for Arch Linux ARM function install_mkcert() { install_log "Fetching mkcert binary" - sudo wget -q https://github.com/FiloSottile/mkcert/releases/download/v1.3.0/mkcert-v1.3.0-linux-arm -O /usr/local/bin/mkcert || install_error "Unable to download mkcert" + sudo wget -q https://github.com/FiloSottile/mkcert/releases/download/v${mkcert_version}/mkcert-v${mkcert_version}-linux-arm -O /usr/local/bin/mkcert || install_error "Unable to download mkcert" sudo chmod +x /usr/local/bin/mkcert install_log "Installing mkcert"