diff options
| author | Aetias <aetias@outlook.com> | 2025-05-19 20:23:13 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-05-19 20:23:13 +0200 |
| commit | 16268dfd061e19e95b8bed95b97f989159a46df6 (patch) | |
| tree | 1a1a9f90a10ab95c28fd16bdda3ead66e09a8e4f | |
| parent | 41fcc1a1b2c1b21ae86b254fc922ef1d939a7c19 (diff) | |
Check `FileNotFoundError`
| -rwxr-xr-x | tools/configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/configure.py b/tools/configure.py index 2bd58b5b..32260a24 100755 --- a/tools/configure.py +++ b/tools/configure.py @@ -210,6 +210,8 @@ def can_run_dsd() -> bool: return version == DSD_VERSION except subprocess.CalledProcessError: return False + except FileNotFoundError: + return False def main(): |
