From a57c3ce1c5fab746cb6a29453a527f74d676fcdd Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:45:20 -0700 Subject: [PATCH] bash env variables --- scripts/config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/config.sh b/scripts/config.sh index bf1ce4f..20b89d4 100644 --- a/scripts/config.sh +++ b/scripts/config.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -HOST="chris@nose-pluto.local" -DEST="~/pluto" -NOSE_DIR="~/nose" \ No newline at end of file +HOST="${HOST:-chris@nose-pluto.local}" +DEST="${DEST:-~/pluto}" +NOSE_DIR="${NOSE_DIR:-~/nose}" \ No newline at end of file