From a9b56f3c47b7ea301ee7f79501935dd967e21af8 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Sat, 17 Sep 2022 04:33:37 -0700 Subject: [PATCH] remove problematic error handling in install script --- .local/bin/dotfiles-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/dotfiles-install.sh b/.local/bin/dotfiles-install.sh index 14a7387..58352b2 100755 --- a/.local/bin/dotfiles-install.sh +++ b/.local/bin/dotfiles-install.sh @@ -17,7 +17,7 @@ if ! command -v git > /dev/null;then fi mkdir -p "$DOTFILES_REPO_DIR" -git clone --bare "$DOTFILES_REPO_URL" "$DOTFILES_REPO_DIR" || echo " Resuming installation" +git clone --bare "$DOTFILES_REPO_URL" "$DOTFILES_REPO_DIR" dot() { git --git-dir="$DOTFILES_REPO_DIR" --work-tree="$HOME" "$@"