Skip to content

Commit

Permalink
fixed path and added cmd for build and upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Terje Sandstrom committed Dec 6, 2019
1 parent fcf3553 commit 266a54c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python setup.py sdist bdist_wheel
2 changes: 1 addition & 1 deletion listgits/listgits.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def listgits(cwd,level,short,local,remotes,isSearch,gitoptions,results):
results.append((fulldir,stdout))
else:
if not short and not isSearch:
print('Folder only: '+ spc+root)
print('Folder only: '+ spc+root+'/'+dir)
listgits(root,level,short,local,remotes,isSearch,gitoptions,results)
os.chdir(root)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="listgits",
version="0.6.2",
version="0.6.4",
author="Terje Sandstrom",
author_email="[email protected]",
description="Python command line program for listing git repositories under a folder root",
Expand Down
1 change: 1 addition & 0 deletions upload.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python -m twine upload dist/*

0 comments on commit 266a54c

Please sign in to comment.