upgrade script: avoid printing extra line on source

fix-ci
bretello 2023-09-14 22:38:57 +02:00
parent 323542a705
commit b193afe50a
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,7 @@ function update_dotfiles() {
zmodload -F zsh/stat b:zstat
if mtime=$(zstat +mtime "$DOTFILES/update.lock" 2>/dev/null); then
if (( (mtime + 3600 * 24) < EPOCHSECONDS )); then
command rm -rf "$DOTFILES/update.lock"
command rm -f "$DOTFILES/update.lock"
fi
fi
@ -65,7 +65,6 @@ function update_dotfiles() {
trap "
unset -f current_epoch _update_dotfiles_update update_dotfiles &>/dev/null
command rmdir '$DOTFILES/update.lock' &>/dev/null
echo
return 1
" EXIT INT QUIT