omf.bundle.install: Fix #45 by using `name_or_url` instead of `name`
This commit is contained in:
Derek Willian Stavis 2015-09-13 18:40:26 -03:00
commit 1ed78d2418

View File

@ -14,12 +14,12 @@ function omf.bundle.install
switch $type
case "package"
if not contains $name $packages
omf.install --pkg $name
omf.install --pkg $name_or_url
end
case "theme"
if not contains $name $themes
omf.install --theme $name
omf.install --theme $name_or_url
end
end
end