Skip to content

Commit

Permalink
update/init submodules when doing a release
Browse files Browse the repository at this point in the history
  • Loading branch information
mweibel authored Jul 26, 2023
1 parent 2266cb6 commit 8bd007c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ run: ## Runs blender with addon
BLENDER_USER_SCRIPTS=$(USER_SCRIPTS_DIR) ADDON_DEBUG=true $(BLENDER_PATH) --addons helio_blender_addon
rm -Rf $(USER_SCRIPTS_DIR)

release:
submodule:
git submodule update --init

release: submodule
rm helio-blender-addon-$(TAG).zip || true
find helio_blender_addon -iname '__pycache__' -exec rm -Rf {} \;
find helio_blender_addon -iname '*.pyc' -exec rm {} \;
Expand Down

0 comments on commit 8bd007c

Please sign in to comment.