blob: 71a39cf1b9c118e85bc640b479a9788c0fca590b [file] [log] [blame]
Tim Windelschmidt5d357d82025-07-10 18:47:15 +02001The build environment is not guaranteed to have /bin/bash, especially on NixOS
2or in our CI runner. Use /usr/bin/env to resolve it from PATH.
3diff --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