diff options
| author | Alex Zepeda <github@inferiorhumanorgans.com> | 2023-07-21 17:55:49 -0700 |
|---|---|---|
| committer | Alex Zepeda <github@inferiorhumanorgans.com> | 2023-07-21 17:55:49 -0700 |
| commit | 302ad2175d938a5307dd34779e20aada691fd28a (patch) | |
| tree | 57b52630578deca91d98715490a8ab143bcccdc9 | |
| parent | 0308df23e621e783e31a27ca5beaa01b9df60d4a (diff) | |
| download | rust-302ad2175d938a5307dd34779e20aada691fd28a.tar.gz rust-302ad2175d938a5307dd34779e20aada691fd28a.zip | |
rust-installer: Use env(1) in the shebang.
This fixes the case (e.g. *BSD) where bash is installed on the host system, but not at the typical location of /bin.
| -rw-r--r-- | src/tools/rust-installer/install-template.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-installer/install-template.sh b/src/tools/rust-installer/install-template.sh index 6415644e045..b477c3eac35 100644 --- a/src/tools/rust-installer/install-template.sh +++ b/src/tools/rust-installer/install-template.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # No undefined variables set -u |
