oh-my-fish/pkg/omf/cli/omf.remove_package.fish

29 lines
766 B
Fish
Raw Normal View History

function omf.remove_package
for pkg in $argv
if not omf.util_valid_package $pkg
2015-08-26 18:58:35 +00:00
if test $pkg = "omf"
echo (omf::err)"You can't remove `omf`"(omf::off) 1^&2
else
echo (omf::err)"$pkg is not a valid package/theme name"(omf::off) 1^&2
end
return $OMF_INVALID_ARG
end
if test -d $OMF_PATH/pkg/$pkg
emit uninstall_$pkg
rm -rf $OMF_PATH/pkg/$pkg
else if test -d $OMF_PATH/themes/$pkg
if test $pkg = (cat $OMF_CONFIG/theme)
echo "" > $OMF_CONFIG/theme
end
rm -rf $OMF_PATH/themes/$pkg
end
if test $status -eq 0
echo (omf::em)"$pkg succesfully removed."(omf::off)
else
echo (omf::err)"$pkg could not be found"(omf::off) 1^&2
end
end
refresh
end