1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 22:33:03 +00:00

refactor command "listfiles" to "files"

This commit is contained in:
deadc0de6
2019-11-27 19:11:31 +01:00
parent 77527d92c6
commit 8844084999
10 changed files with 48 additions and 48 deletions

View File

@@ -420,11 +420,11 @@ def cmd_list_files(o):
LOG.warn('unknown profile \"{}\"'.format(o.profile))
return
what = 'Dotfile(s)'
if o.listfiles_templateonly:
if o.files_templateonly:
what = 'Template(s)'
LOG.emph('{} for profile \"{}\"\n'.format(what, o.profile))
for dotfile in o.dotfiles:
if o.listfiles_templateonly:
if o.files_templateonly:
src = os.path.join(o.dotpath, dotfile.src)
if not Templategen.is_template(src):
continue
@@ -610,10 +610,10 @@ def main():
LOG.dbg('running cmd: list')
cmd_list_profiles(o)
elif o.cmd_listfiles:
elif o.cmd_files:
# list files for selected profile
if o.debug:
LOG.dbg('running cmd: listfiles')
LOG.dbg('running cmd: files')
cmd_list_files(o)
elif o.cmd_install:

View File

@@ -59,7 +59,7 @@ Usage:
dotdrop update [-VbfdkP] [-c <path>] [-p <profile>]
[-i <pattern>...] [<path>...]
dotdrop remove [-Vbfdk] [-c <path>] [-p <profile>] [<path>...]
dotdrop listfiles [-VbT] [-c <path>] [-p <profile>]
dotdrop files [-VbT] [-c <path>] [-p <profile>]
dotdrop detail [-Vb] [-c <path>] [-p <profile>] [<key>...]
dotdrop list [-Vb] [-c <path>]
dotdrop --help
@@ -190,7 +190,7 @@ class Options(AttrMonitor):
"""apply cli args as attribute"""
# the commands
self.cmd_list = self.args['list']
self.cmd_listfiles = self.args['listfiles']
self.cmd_files = self.args['files']
self.cmd_install = self.args['install']
self.cmd_compare = self.args['compare']
self.cmd_import = self.args['import']
@@ -212,8 +212,8 @@ class Options(AttrMonitor):
sys.exit(USAGE)
self.import_link = OPT_LINK[link]
# "listfiles" specifics
self.listfiles_templateonly = self.args['--template']
# "files" specifics
self.files_templateonly = self.args['--template']
# "install" specifics
self.install_force_action = self.args['--force-actions']
self.install_temporary = self.args['--temp']