Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mkhtml: check for addon_path #3571

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils/mkhtml.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def get_last_git_commit(src_dir, addon_path, is_addon):
src_dir=src_dir,
)
else:
if gs:
if gs and addon_path is not None:
# Addons installation
return get_git_commit_from_rest_api_for_addon_repo(
addon_path=addon_path,
Expand Down
Loading