From 028eb33aaa1ff48123bee6bcee67d4c163e556ea Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 25 Oct 2022 21:01:51 -0500 Subject: [PATCH] fix dev null erroring --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index e1d52bf..af732b6 100755 --- a/install +++ b/install @@ -18,7 +18,7 @@ config () { install_bare_dotfiles () { git clone --bare https://github.com/joshuadavidthomas/dotfiles.git ${INSTALL_DIR} mkdir -p .config-backup - config checkout > /dev/null 2>&1 || true + config checkout 2>&1 if [ $? = 0 ]; then echo "Checked out config."; else