From 488c643342a2c8c211edbe6356bcc2529c787c7f Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Wed, 25 Feb 2026 16:08:39 -0800 Subject: [PATCH] mkdir-p --- scripts/config.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/config.sh b/scripts/config.sh index 5f75849..255f76f 100755 --- a/scripts/config.sh +++ b/scripts/config.sh @@ -9,3 +9,5 @@ URL="${URL:-http://$HOST}" DEST="${DEST:-~/toes}" DATA_DIR="${DATA_DIR:-~/data}" APPS_DIR="${APPS_DIR:-~/apps}" + +mkdir -p "$DEST" "$DATA_DIR" "$APPS_DIR"