Skip to content

Commit

Permalink
Merge pull request #13 from dataiku/chore/dss12-sc-153184-plugin-temp…
Browse files Browse the repository at this point in the history
…late-exclude-dist-and-idea-from

Remove dist and .idea from the dev build
  • Loading branch information
MayeulRousselet committed Sep 21, 2023
2 parents 1f60d84 + 33780bc commit 055effd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,5 @@ gradle-app.setting
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
.vscode/settings.json

.idea/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dev: dist-clean
@echo "[START] Archiving plugin to dist/ folder... (dev mode)"
@cat plugin.json | json_pp > /dev/null
@mkdir dist
@zip -v -9 dist/${archive_file_name} -r . --exclude "tests/*" "env/*" ".git/*" ".pytest_cache/*"
@zip -v -9 dist/${archive_file_name} -r . --exclude "tests/*" "env/*" ".git/*" ".pytest_cache/*" ".idea/*" "dist/*"
@echo "[SUCCESS] Archiving plugin to dist/ folder: Done!"

unit-tests:
Expand Down

0 comments on commit 055effd

Please sign in to comment.