Commit 777186f8 authored by Sergey Kasmy's avatar Sergey Kasmy Committed by Derek W. Stavis

Call the rm command directly (#718)

Ignore any aliases there may be
parent 6f35c1b5
......@@ -10,7 +10,7 @@ function omf.bundle.remove
set name $argv[2]
set bundle_contents (cat $bundle | sort -u)
rm -f $bundle
command rm -f $bundle
for record in $bundle_contents
set record_type (echo $record | cut -d' ' -f1)
......
......@@ -20,7 +20,7 @@ function omf.packages.remove -a pkg
source $path/uninstall.fish 2> /dev/null;
and emit uninstall_$pkg
if rm -rf $path
if command rm -rf $path
omf.bundle.remove "package" $pkg
return 0
else
......@@ -36,7 +36,7 @@ function omf.packages.remove -a pkg
test $pkg = (cat $OMF_CONFIG/theme);
and echo default > $OMF_CONFIG/theme
if rm -rf $path
if command rm -rf $path
omf.bundle.remove "theme" $pkg
return 0
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment