mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
8 lines
178 B
Fish
8 lines
178 B
Fish
|
function __fisher_copy -a option source target -d "cp/ln wrapper"
|
||
|
if test "$option" = link
|
||
|
ln -sfF $source $target
|
||
|
else
|
||
|
cp -f $source $target
|
||
|
end
|
||
|
end
|