diff options
author | Quentin Gliech <quentingliech@gmail.com> | 2021-03-25 17:53:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 16:53:54 +0000 |
commit | d4c4798a2548a53b63546a176f6dd350c4ad26bc (patch) | |
tree | 03a1d35dd268e0d6eebf0163e54789a1df7937b9 /.buildkite | |
parent | platform specific prerequisites in source install (#9667) (diff) | |
download | synapse-d4c4798a2548a53b63546a176f6dd350c4ad26bc.tar.xz |
Use interpreter from $PATH instead of absolute paths in various scripts using /usr/bin/env (#9689)
On NixOS, `bash` isn't under `/bin/bash` but rather in some directory in `$PATH`. Locally, I've been patching those scripts to make them work. `/usr/bin/env` seems to be the only [portable way](https://unix.stackexchange.com/questions/29608/why-is-it-better-to-use-usr-bin-env-name-instead-of-path-to-name-as-my) to use binaries from the PATH as interpreters. Signed-off-by: Quentin Gliech <quentingliech@gmail.com>
Diffstat (limited to '.buildkite')
-rwxr-xr-x | .buildkite/scripts/test_old_deps.sh | 2 | ||||
-rwxr-xr-x | .buildkite/scripts/test_synapse_port_db.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.buildkite/scripts/test_old_deps.sh b/.buildkite/scripts/test_old_deps.sh index 28e6694b5d..9fe5b696b0 100755 --- a/.buildkite/scripts/test_old_deps.sh +++ b/.buildkite/scripts/test_old_deps.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # this script is run by buildkite in a plain `xenial` container; it installs the # minimal requirements for tox and hands over to the py35-old tox environment. diff --git a/.buildkite/scripts/test_synapse_port_db.sh b/.buildkite/scripts/test_synapse_port_db.sh index 9ed2177635..8914319e38 100755 --- a/.buildkite/scripts/test_synapse_port_db.sh +++ b/.buildkite/scripts/test_synapse_port_db.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Test script for 'synapse_port_db', which creates a virtualenv, installs Synapse along # with additional dependencies needed for the test (such as coverage or the PostgreSQL |