2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

added extract tool

This commit is contained in:
Jack Andersen
2015-06-11 23:08:49 -10:00
parent 8de863fcba
commit 4b13e9da9d
10 changed files with 123 additions and 22 deletions

View File

@@ -3,7 +3,7 @@
_hecl ()
{
local word=${COMP_WORDS[COMP_CWORD]}
local filecmds=(init spec add remove group cook clean package)
local filecmds=(init spec extract add remove group cook clean package)
if [ $COMP_CWORD == 1 ]
then
@@ -12,7 +12,7 @@ _hecl ()
elif [ $COMP_CWORD == 2 ]
then
case ${COMP_WORDS[1]} in
init|add|remove|group|cook|clean|package)
init|extract|add|remove|group|cook|clean|package)
COMPREPLY=($(compgen -f -- "${word}"))
;;
spec)