From 5c882597dab5f374125fff51a96f813e8c47fd3e Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 16 Aug 2022 18:48:56 -0600 Subject: [PATCH] v2.5.1 ===================================================================== --- Bug Fixes ---------------------------- - git/package/install didn't create build dir if it did not exist --- zsh/git/package/common.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/git/package/common.zsh b/zsh/git/package/common.zsh index a0d688d..ca7c09b 100644 --- a/zsh/git/package/common.zsh +++ b/zsh/git/package/common.zsh @@ -4,6 +4,7 @@ source ${0:a:h}/../common.zsh ##################################################################### PACKAGE_INSTALL_DIR="$HOME/.local/share/source-packages" +[ ! -d "$PACKAGE_INSTALL_DIR" ] && mkdir -p "$PACKAGE_INSTALL_DIR" #####################################################################