diff options
author | xegineering <me@xegineering.eu> | 2024-10-02 21:00:25 +0200 |
---|---|---|
committer | xegineering <me@xegineering.eu> | 2024-10-02 21:00:25 +0200 |
commit | cdd23b4b0a7c14dba738f035e75ac640f1ca3e85 (patch) | |
tree | 2b886802a47dee36a71b1b8d67306016a247f3cb | |
parent | cdb89bfc9705bdee18a6893d1bb2678f6b8b7edd (diff) | |
download | soundbox-go-cdd23b4b0a7c14dba738f035e75ac640f1ca3e85.tar soundbox-go-cdd23b4b0a7c14dba738f035e75ac640f1ca3e85.tar.zst soundbox-go-cdd23b4b0a7c14dba738f035e75ac640f1ca3e85.zip |
Fix check.py as pre-commit hook
The file did not work properly if used via Git commit hook symlink.
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ def main() -> None: subprocess.run( ["go", "test", "-v"], check=True, - cwd=pathlib.Path(__file__).parent, + cwd=pathlib.Path(__file__).resolve().parent, ) |