commit c7524bdd964b195ef67c40c38aba4e0501af24ef
parent c912f3d655195dd7f979a96e483d57261b613c62
Author: Jakub Kaczor <jakubk0.kaczor@gmail.com>
Date: Sat, 9 Apr 2022 17:52:52 +0200
Force hard linking the file
It was forgotten to add `-f` (force) option for `ln` in
95687867d1795299625e1e3dc5cdc412155de879. This enables opening files
with the same names, but different contents, with a new NeoMutt
instance, after the previous is closed.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/openfile b/bin/openfile
@@ -5,6 +5,6 @@ tempdir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard/files"
file="$tempdir/$(basename "$1")"
[ "$(uname)" = "Darwin" ] && opener="open" || opener="setsid -f xdg-open"
mkdir -p "$tempdir"
-ln "$1" "$file"
+ln -f "$1" "$file"
$opener "$file" >/dev/null 2>&1
find "${tempdir:?}" -mtime +1 -type f -delete