Skip to content

Commit

Permalink
fix gita shell group #193
Browse files Browse the repository at this point in the history
  • Loading branch information
nosarthur committed Sep 13, 2021
1 parent 6e1380e commit 9edc9d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gita/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def f_shell(args):
if k in repos:
chosen[k] = repos[k]
if k in groups:
for r in groups[k]:
for r in groups[k]['repos']:
chosen[r] = repos[r]
repos = chosen
cmds = ' '.join(args.man[i:]) # join the shell command into a single string
Expand Down Expand Up @@ -633,7 +633,7 @@ def main(argv=None):
help='run any shell command',
description='shell mode: delegate any shell command in specified or '
'all repo(s).\n'
'Examples:\n \t gita shell pwd\n'
'Examples:\n \t gita shell pwd; \n'
'\t gita shell repo1 repo2 repo3 touch xx')
p_shell.add_argument(
'man',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup(
name='gita',
packages=['gita'],
version='0.15.7.1',
version='0.15.7.3',
license='MIT',
description='Manage multiple git repos with sanity',
long_description=long_description,
Expand Down

0 comments on commit 9edc9d4

Please sign in to comment.