aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorDov Alperin <DAlperin@users.noreply.github.com>2022-09-27 04:42:08 -0400
committerGitHub <noreply@github.com>2022-09-27 09:42:08 +0100
commitb5bfff47d296e704fbeb33c5b57829609bed0426 (patch)
treed76a101f3d1ff27f272f1ae744c0ae753a809d3f /build
parent12649ccedd858cbe075271ea234b1e268f973c5a (diff)
Use /usr/bin/env bash in shebangs to make them universal (#2735)
Some systems (like nixos) don't have bash living at `/bin/bash` so using `/usr/bin/env bash` we can make these scripts universal. ### Pull Request Checklist <!-- Please read docs/CONTRIBUTING.md before submitting your pull request --> * [X] I have added added tests for PR _or_ I have justified why this PR doesn't need tests. * [x] Pull request includes a [sign off](https://github.com/matrix-org/dendrite/blob/main/docs/CONTRIBUTING.md#sign-off) Signed-off-by: `Dov Alperin <git@dov.dev>` Signed-off-by: `Dov Alperin <git@dov.dev>`
Diffstat (limited to 'build')
-rwxr-xr-xbuild/docker/images-build.sh2
-rwxr-xr-xbuild/docker/images-pull.sh2
-rwxr-xr-xbuild/docker/images-push.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/build/docker/images-build.sh b/build/docker/images-build.sh
index eaed5f6d..c2c14068 100755
--- a/build/docker/images-build.sh
+++ b/build/docker/images-build.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
cd $(git rev-parse --show-toplevel)
diff --git a/build/docker/images-pull.sh b/build/docker/images-pull.sh
index 496e8006..f3f98ce7 100755
--- a/build/docker/images-pull.sh
+++ b/build/docker/images-pull.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
TAG=${1:-latest}
diff --git a/build/docker/images-push.sh b/build/docker/images-push.sh
index fd9b999e..248fdee2 100755
--- a/build/docker/images-push.sh
+++ b/build/docker/images-push.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
TAG=${1:-latest}