Skip to content

Commit

Permalink
fix: add help to pack_source.py
Browse files Browse the repository at this point in the history
  • Loading branch information
eri24816 committed Apr 18, 2024
1 parent 36497d3 commit 53211b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/pack_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('dist', type=str)
parser.add_argument('--template', type=str, default='source')
parser.add_argument('dist', type=str, help='The name of the distribution.')
parser.add_argument('--template', type=str, default='source', help='The template folder to be the base of the distribution. The folder can have install scripts and other necessary files.')
args = parser.parse_args()

root = pathlib.Path(__file__).parent
Expand Down

0 comments on commit 53211b8

Please sign in to comment.