Skip to content

Commit

Permalink
Fixes Makefile package target to remove the __pycache__ dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kasaboski committed Nov 27, 2024
1 parent e6b5a73 commit 5b4a369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ clean:
.PHONY: package
package: packages/flare/bin/vendor
-@rm flare.tar.gz
@find packages/flare/bin -type d -name "__pycache__" -exec rm -r {} +
@find packages/flare/flare/bin -type d -name "__pycache__" -exec rm -r {} +
COPYFILE_DISABLE=1 tar \
--exclude='packages/flare/flare/local' \
--exclude='packages/flare/flare/metadata/local.meta' \
Expand Down

0 comments on commit 5b4a369

Please sign in to comment.