From 3ffb600f2905ce7a02c9f014c3825b9da8418b8c Mon Sep 17 00:00:00 2001 From: ktsuda Date: Tue, 15 Feb 2022 09:59:36 +0900 Subject: [PATCH] Update the update script. This suppresses the warning message that is caused by the known bug of stow command. See https://github.com/aspiers/stow/issues/65. --- update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update b/update index 1532ef5..08f831f 100755 --- a/update +++ b/update @@ -12,7 +12,7 @@ function set_stow_folders() { function update() { for folder in $(echo $STOW_FOLDERS); do printf "Updating %-14s" $folder - stow -t $HOME -D $folder + stow -t $HOME -D $folder 2> /dev/null stow -t $HOME $folder echo " ... Done" done