소스 검색
Revert "Hard link the file instead of copying"
This reverts commit 95687867d1
.
tags/v3.3
Luke Smith
2 년 전
No known key found for this signature in database
GPG 키 ID: 4C50B54A911F6252
1개의 변경된 파일과
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 -f "$1" "$file" |
|
|
|
cp -f "$1" "$file" |
|
|
|
$opener "$file" >/dev/null 2>&1 |
|
|
|
find "${tempdir:?}" -mtime +1 -type f -delete |