Skip to content

Commit

Permalink
fix: Make built-in extension action exit early when building legacy
Browse files Browse the repository at this point in the history
Signed-off-by: Mahid Sheikh <mahid@standingpad.org>
  • Loading branch information
StandingPadAnimations committed Oct 11, 2024
1 parent 2cec8de commit 8795029
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bpy_addon_build/built_in_actions/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@


def main(ctx: BabContext) -> None:
if not ctx.is_extension:
return
manifest_path = Path(ctx.current_path, BLENDER_MANIFEST)
manifest_data = get_manifest_data(manifest_path)
verify.verify_manifest(manifest_data, manifest_path)
Expand Down

0 comments on commit 8795029

Please sign in to comment.