Просмотр исходного кода

Force hard linking the file

It was forgotten to add `-f` (force) option for `ln` in
95687867d1. This enables opening files
with the same names, but different contents, with a new NeoMutt
instance, after the previous is closed.
tags/v3.3
Jakub Kaczor 2 лет назад
Родитель
Сommit
c7524bdd96
1 измененных файлов: 1 добавлений и 1 удалений
  1. +1
    -1
      bin/openfile

+ 1
- 1
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

Загрузка…
Отмена
Сохранить