mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-01-24 00:52:01 +08:00
291d0c9784
`omf theme` was persisting the installed theme twice, one time on `omf.install` and other time on `omf.bundle.add`.
15 lines
299 B
Fish
15 lines
299 B
Fish
function omf.bundle.add -a type name_or_url
|
|
set -l bundle $OMF_CONFIG/bundle
|
|
set -l record "$type $name_or_url"
|
|
|
|
if test -f $bundle
|
|
if not grep $record $bundle > /dev/null 2>&1
|
|
echo $record >> $bundle
|
|
end
|
|
else
|
|
echo $record > $bundle
|
|
end
|
|
|
|
sort -u $bundle -o $bundle
|
|
end
|