mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-03 03:41:14 -03:00
On alpine, tests/checks/check-completions fails with stat: can't read file system information for '%u:%g': No such file or directory
16 lines
476 B
Fish
16 lines
476 B
Fish
# localization: skip(private)
|
|
function __fish_cache_put
|
|
set -l cache_file $argv[1]
|
|
touch $cache_file
|
|
set -l dir (path dirname $cache_file)
|
|
chown --reference=$dir $cache_file 2>/dev/null ||
|
|
chown (
|
|
if stat --version 2>&1 | string match -q 'BusyBox*'
|
|
stat -c '%u:%g' $dir
|
|
else
|
|
stat --format '%u:%g' $dir 2>/dev/null ||
|
|
stat -f '%u:%g' $dir
|
|
end
|
|
) $cache_file
|
|
end
|