Use more generic "#!/usr/bin/env bash" instead of "#!/bin/bash" (#80)

"#!/bin/bash" does not work with nixos.
This commit is contained in:
Stefan Otte
2025-11-24 18:45:58 +01:00
committed by GitHub
parent 94089bdce5
commit 4ae8fc8713

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Bisection script to find which test creates unwanted files/state
# Usage: ./find-polluter.sh <file_or_dir_to_check> <test_pattern>
# Example: ./find-polluter.sh '.git' 'src/**/*.test.ts'