Skip to content

Commit

Permalink
fix dotnet build cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm authored and asottile committed Nov 3, 2020
1 parent 3fa9d3d commit aa80234
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pre_commit/languages/dotnet.py
Expand Up @@ -12,7 +12,6 @@
from pre_commit.languages import helpers
from pre_commit.prefix import Prefix
from pre_commit.util import clean_path_on_failure
from pre_commit.util import rmtree

ENVIRONMENT_DIR = 'dotnetenv'
BIN_DIR = 'bin'
Expand Down Expand Up @@ -76,9 +75,9 @@ def install_environment(
),
)

# Cleanup build output
for d in ('bin', 'obj', build_dir):
rmtree(prefix.path(d))
# Clean the git dir, ignoring the environment dir
clean_cmd = ('git', 'clean', '-ffxd', '-e', f'{ENVIRONMENT_DIR}-*')
helpers.run_setup_cmd(prefix, clean_cmd)


def run_hook(
Expand Down

0 comments on commit aa80234

Please sign in to comment.