We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e50f8b commit acf9844Copy full SHA for acf9844
setup.py
@@ -7,6 +7,7 @@
7
import codecs
8
import os
9
import sys
10
+from shutil import rmtree
11
12
from setuptools import Command, find_packages, setup
13
from setuptools.command.develop import develop
@@ -71,7 +72,6 @@ class PostDevelopCommand(develop):
71
72
"""
73
def run(self):
74
# Remove target/ to FORCE the recreation of the JAR files.
- from shutil import rmtree
75
rmtree(os.path.join(HERE, 'target'), ignore_errors=True)
76
from javac_parser import Java
77
Java._build_jar()
0 commit comments