Commit 9b3a2586 authored by Andrew Rynhard's avatar Andrew Rynhard

Fix #303

parent 4fab2853
function omf.bundle.add -a type name_or_url
set -l bundle $OMF_CONFIG/bundle
if test -h $OMF_CONFIG/bundle
set bundle (readlink $OMF_CONFIG/bundle)
else
set bundle $OMF_CONFIG/bundle
end
set -l record "$type $name_or_url"
if test -f $bundle
......
function omf.bundle.remove
set bundle $OMF_CONFIG/bundle
if test -h $OMF_CONFIG/bundle
set bundle (readlink $OMF_CONFIG/bundle)
else
set bundle $OMF_CONFIG/bundle
end
if test -f $bundle
set type $argv[1]
......
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