dotfm

My dotfile manager
git clone git://src.gearsix.net/dotfm
Log | Files | Refs | Atom | README | LICENSE

commit 0fcea5c4078926664ad5881340029f8181ac14e1
parent 8ed5072af32a5bb68f72c8fca9142bd4a6b99055
Author: GeaRSiX <gearsix@tuta.io>
Date:   Sun, 26 Jul 2020 23:20:28 +0100

removed install-all from valid_commands

Diffstat:
Msrc/dotfm.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dotfm.py b/src/dotfm.py @@ -90,7 +90,7 @@ def error_exit(message): def parse_arguments(): global ARGS - valid_commands = ['install', 'remove', 'edit', 'install-all', 'list'] + valid_commands = ['install', 'remove', 'edit', 'list'] parser = argparse.ArgumentParser(description='a simple tool to help you manage your dot files, see \"man dotfm\" for more.') parser.add_argument('cmd', metavar='COMMAND', choices=valid_commands, help='the dotfm COMMAND to execute: {}'.format(valid_commands))