Skip to content

Commit

Permalink
Remove ENV_PATH on Black action completion (#3759)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjproud committed Aug 8, 2023
1 parent 77f1994 commit c36e468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -50,6 +50,8 @@
[official pre-commit mirror](https://github.com/psf/black-pre-commit-mirror). Swapping
`https://github.com/psf/black` to `https://github.com/psf/black-pre-commit-mirror` in
your `.pre-commit-config.yaml` will make Black about 2x faster (#3828)
- The `.black.env` folder specified by `ENV_PATH` will now be removed on the completion
of the GitHub Action. (#3759)

### Documentation

Expand Down
2 changes: 2 additions & 0 deletions action/main.py
@@ -1,5 +1,6 @@
import os
import shlex
import shutil
import sys
from pathlib import Path
from subprocess import PIPE, STDOUT, run
Expand Down Expand Up @@ -73,5 +74,6 @@
stderr=STDOUT,
encoding="utf-8",
)
shutil.rmtree(ENV_PATH, ignore_errors=True)
print(proc.stdout)
sys.exit(proc.returncode)

0 comments on commit c36e468

Please sign in to comment.