diff options
author | zachir <zachir@librem.one> | 2025-07-15 23:08:12 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2025-07-15 23:08:12 -0500 |
commit | 446e8deacdd29921892c00887f8530ee5252e5f1 (patch) | |
tree | c35b519ee6d47a4fff720be48e014901a15efed8 | |
parent | 63b891a62a1afe15e32df4782ee4ab4f94552657 (diff) | |
parent | 38be649ab8b5a12b08e81d38e3ff5e7ea69e09e5 (diff) |
Merge branch 'master' into artix
-rwxr-xr-x | install.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -6,13 +6,13 @@ SSH_BASE_URL="git@git.zachir.xyz:zachir/" HTTP_BASE_URL="https://git.zachir.xyz/" -SCRIPT_DIRS="$(<<EOF +SCRIPT_DIRS="$(cat << 'EOF' generics scripts shortcmds sp EOF - +)" printhelp () { printf "install.sh | Used to add my other script repos as submodules. Feel free to modfy it to clone yours as well.\n" @@ -51,5 +51,6 @@ clone_dir () { } echo "$SCRIPT_DIRS" | while read i; do + [ -z "$i" ] && continue clone_dir "$i" "$___USE_SSH" done |