add safety check to avoid infinite cat hang
This commit is contained in:
parent
b557d635fd
commit
5a7a1747f2
1 changed files with 10 additions and 8 deletions
|
@ -161,6 +161,7 @@ def fish_completion():
|
|||
function __borgmatic_check_version
|
||||
set -fx this_filename (status current-filename)
|
||||
fish -c '
|
||||
if test -f "$this_filename"
|
||||
set this_script (cat $this_filename 2> /dev/null)
|
||||
set installed_script (borgmatic --fish-completion 2> /dev/null)
|
||||
if [ "$this_script" != "$installed_script" ] && [ "$installed_script" != "" ]
|
||||
|
@ -170,6 +171,7 @@ def fish_completion():
|
|||
'$this_filename',
|
||||
)}"
|
||||
end
|
||||
end
|
||||
' &
|
||||
end
|
||||
__borgmatic_check_version
|
||||
|
|
Loading…
Reference in a new issue