From 2333407171b601bcde1dd6ad1226660775041640 Mon Sep 17 00:00:00 2001 From: OBJNULL Date: Sat, 9 May 2026 22:16:56 -0500 Subject: [PATCH] Fix append not replace --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index b362734..1b0c1b2 100755 --- a/install.sh +++ b/install.sh @@ -53,7 +53,7 @@ function displayYesNo { } function displayCmd { echo -e "- Running $(styleColor "green")$2$(styleColorRst)..." - $1 > /tmp/objnull-dotfile-installer.log 2>&1 + $1 >> /tmp/objnull-dotfile-installer.log 2>&1 if [ $? -ne 0 ]; then echo -e "\t---$(styleColor "red")Previous command failed!$(styleColorRst)---"