mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-23 19:01:15 -03:00
Commit f086bc9564 (Maintain ownership when rewriting universal variables
file, 2015-09-26) fixed an issue where "sudo -E fish" would create root-owned
~/.config/fish/fish_variables that break the users's shell.
A simlar issue exists for files in ~/.cache/fish; fix that.
Note that ~/.cache/fish is currently created on first run when we generate
completions from manpages.
See the issue described in #11292
46 lines
1.3 KiB
Fish
46 lines
1.3 KiB
Fish
function __fish_print_eopkg_packages
|
|
type -q -f eopkg || return 1
|
|
|
|
argparse i/installed -- $argv
|
|
or return 1
|
|
|
|
set -l xdg_cache_home (__fish_make_cache_dir)
|
|
or return
|
|
|
|
# If the cache is less than max_age, we do not recalculate it
|
|
# Determine whether to print installed/available packages
|
|
|
|
if set -q _flag_installed
|
|
set -l cache_file $xdg_cache_home/eopkg-installed
|
|
if test -f $cache_file
|
|
cat $cache_file
|
|
set -l age (path mtime -R -- $cache_file)
|
|
set -l max_age 500
|
|
if test $age -lt $max_age
|
|
return 0
|
|
end
|
|
end
|
|
|
|
__fish_cache_put $cache_file
|
|
# Remove package version information from output and pipe into cache file
|
|
eopkg list-installed -N | cut -d ' ' -f 1 >$cache_file &
|
|
return 0
|
|
else
|
|
set -l cache_file $xdg_cache_home/eopkg-available
|
|
if test -f $cache_file
|
|
cat $cache_file
|
|
set -l age (path mtime -R -- $cache_file)
|
|
set -l max_age 500
|
|
if test $age -lt $max_age
|
|
return 0
|
|
end
|
|
end
|
|
|
|
__fish_cache_put $cache_file
|
|
# Remove package version information from output and pipe into cache file
|
|
eopkg list-available -N | cut -d ' ' -f 1 >$cache_file &
|
|
return 0
|
|
end
|
|
return 1
|
|
end
|