oh-my-fish/pkg/omf/functions/cli/omf.cli.new.fish
Stephen M. Coakley bfe88ad604
Refactor command execution and help
- Copy and improve help text, and convert it to AsciiDoc files
- Evaluate commands dynamically
2017-06-17 16:19:58 -05:00

8 lines
178 B
Fish

function omf.cli.new
if test (count $argv) -ne 2
echo (omf::err)"Package type or name missing"(omf::off) >&2
return $OMF_MISSING_ARG
end
omf.packages.new $argv
end