Skip to content

Commit

Permalink
Modify path for paver package to avoid nested ee_plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
zacdezgeo committed Jan 14, 2025
1 parent d17f75e commit 6246b5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
name="ee_plugin",
ext_libs=path(os.path.join("ee_plugin", "extlibs")),
source_dir=path("ee_plugin"),
package_dir=path("ee_plugin"),
package_dir=path("."),
tests=["test", "tests"],
excludes=[
"*.pyc",
Expand Down Expand Up @@ -149,5 +149,5 @@ def filter_excludes(files):
for root, dirs, files in os.walk(src_dir):
for f in filter_excludes(files):
relpath = os.path.relpath(root, ".")
zipFile.write(path(root) / f, path("ee_plugin") / path(relpath) / f)
zipFile.write(path(root) / f, path(relpath) / f)
filter_excludes(dirs)

0 comments on commit 6246b5b

Please sign in to comment.