| Tim Windelschmidt | 5d357d8 | 2025-07-10 18:47:15 +0200 | [diff] [blame] | 1 | The build environment is not guaranteed to have /bin/bash, especially on NixOS |
| 2 | or in our CI runner. Use /usr/bin/env to resolve it from PATH. |
| 3 | diff --git a/python/private/stage1_bootstrap_template.sh b/python/private/stage1_bootstrap_template.sh |
| 4 | --- a/python/private/stage1_bootstrap_template.sh |
| 5 | +++ b/python/private/stage1_bootstrap_template.sh |
| 6 | @@ -1,5 +1,5 @@ |
| 7 | -#!/bin/bash |
| 8 | +#!/usr/bin/env bash |
| 9 | |
| 10 | set -e |
| 11 | |
| 12 | if [[ -n "${RULES_PYTHON_BOOTSTRAP_VERBOSE:-}" ]]; then |