From 95519f48b8edcdacc7e1af0ad374e5d6441e56a0 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 9 Aug 2019 19:47:27 +0300 Subject: [PATCH] bashrc & zshrc: add acme.sh support Resolves: #128 --- rc/bashrc | 5 +++++ rc/zshrc | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/rc/bashrc b/rc/bashrc index 89366326..23c5f509 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -956,6 +956,11 @@ myip6 () { fi } +# acme.sh +if [ -f ~/.acme.sh/acme.sh.env ]; then + source ~/.acme.sh/acme.sh.env +fi + # .custom if [ -f ~/.custom ]; then source ~/.custom diff --git a/rc/zshrc b/rc/zshrc index 0848da73..aee4dfab 100644 --- a/rc/zshrc +++ b/rc/zshrc @@ -962,6 +962,11 @@ myip6 () { # Source files for miscannellious modifications. +# acme.sh +if [ -f ~/.acme.sh/acme.sh.env ]; then + source ~/.acme.sh/acme.sh.env +fi + # .custom if [ -f ~/.custom ]; then source ~/.custom