diff options
Diffstat (limited to 'g2h/cli.py')
| -rw-r--r-- | g2h/cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ def parse_args(): parser.add_argument('repo_path', help='Path to the root of git repository') parser.add_argument('out_dir', help='Path to where the generated files should be stored') parser.add_argument('--name', help='Name of the project. Default: directory name of repo') + parser.add_argument('--content-subdir', help='Subdir(s) where the page will be served from. Default: None', default='') return parser.parse_args() @@ -25,7 +26,7 @@ def main(): project_name = args.name if args.name is not None else os.path.basename(args.repo_path) tags = sorted(git.get_tags(), key=lambda t: t.commit.committed_date, reverse=True) - factory = PageFactory(args.out_dir, project_name) + factory = PageFactory(args.out_dir, project_name, args.content_subdir) factory.new_overview(branches, tags).render() factory.new_log(commits, branches, tags).render() for commit in commits: |