Skip to content

Commit

Permalink
Fix codemodder executable paths
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Dec 12, 2023
1 parent 507a285 commit 130a43f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/pixee/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,8 @@
JAVA_CODEMODDER = os.environ.get("PIXEE_JAVA_CODEMODDER", "pixee-java-codemods")

CODEMODDER_MAPPING = {
"python": (
os.environ.get("PIXEE_PYTHON_CODEMODDER", "pixee-python-codemodder"),
"*.py",
),
"java": (
os.environ.get("PIXEE_JAVA_CODEMODDER", "pixee-java-codemodder"),
"*.java",
),
"python": (PYTHON_CODEMODDER, "*.py"),
"java": (JAVA_CODEMODDER, "*.java"),
}

# It's not ideal for the CLI to have to encode this information but it's necessary for now
Expand Down

0 comments on commit 130a43f

Please sign in to comment.