Skip to content
Snippets Groups Projects
Unverified Commit d4c4798a authored by Quentin Gliech's avatar Quentin Gliech Committed by GitHub
Browse files

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: default avatarQuentin Gliech <quentingliech@gmail.com>
parent e5801db8
No related branches found
No related tags found
No related merge requests found
Showing with 18 additions and 17 deletions
#!/bin/bash #!/usr/bin/env bash
# this script is run by buildkite in a plain `xenial` container; it installs the # 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. # minimal requirements for tox and hands over to the py35-old tox environment.
......
#!/bin/bash #!/usr/bin/env bash
# #
# Test script for 'synapse_port_db', which creates a virtualenv, installs Synapse along # 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 # with additional dependencies needed for the test (such as coverage or the PostgreSQL
......
Use interpreter from `$PATH` via `/usr/bin/env` instead of absolute paths in various scripts.
#!/bin/bash #!/usr/bin/env bash
# this script will use the api: # this script will use the api:
# https://github.com/matrix-org/synapse/blob/master/docs/admin_api/purge_history_api.rst # https://github.com/matrix-org/synapse/blob/master/docs/admin_api/purge_history_api.rst
......
#!/bin/bash #!/usr/bin/env bash
DOMAIN=yourserver.tld DOMAIN=yourserver.tld
# add this user as admin in your home server: # add this user as admin in your home server:
......
#!/bin/bash #!/usr/bin/env bash
set -e set -e
......
#!/bin/bash #!/usr/bin/env bash
DIR="$( cd "$( dirname "$0" )" && pwd )" DIR="$( cd "$( dirname "$0" )" && pwd )"
......
#!/bin/bash #!/usr/bin/env bash
DIR="$( cd "$( dirname "$0" )" && pwd )" DIR="$( cd "$( dirname "$0" )" && pwd )"
......
#!/bin/bash #!/usr/bin/env bash
# The script to build the Debian package, as ran inside the Docker image. # The script to build the Debian package, as ran inside the Docker image.
......
#!/bin/bash #!/usr/bin/env bash
# This script runs the PostgreSQL tests inside a Docker container. It expects # This script runs the PostgreSQL tests inside a Docker container. It expects
# the relevant source files to be mounted into /src (done automatically by the # the relevant source files to be mounted into /src (done automatically by the
......
#!/bin/bash #!/usr/bin/env bash
# #
# A script which checks that an appropriate news file has been added on this # A script which checks that an appropriate news file has been added on this
# branch. # branch.
......
#!/bin/bash #!/usr/bin/env bash
# Find linting errors in Synapse's default config file. # Find linting errors in Synapse's default config file.
# Exits with 0 if there are no problems, or another code otherwise. # Exits with 0 if there are no problems, or another code otherwise.
......
#!/bin/bash #!/usr/bin/env bash
# #
# Update/check the docs/sample_config.yaml # Update/check the docs/sample_config.yaml
......
#!/bin/bash #!/usr/bin/env bash
# #
# Runs linting scripts over the local Synapse checkout # Runs linting scripts over the local Synapse checkout
# isort - sorts import statements # isort - sorts import statements
......
#!/bin/bash #!/usr/bin/env bash
# #
# This script generates SQL files for creating a brand new Synapse DB with the latest # This script generates SQL files for creating a brand new Synapse DB with the latest
# schema, on both SQLite3 and Postgres. # schema, on both SQLite3 and Postgres.
......
#!/bin/bash #!/usr/bin/env bash
set -e set -e
...@@ -6,4 +6,4 @@ set -e ...@@ -6,4 +6,4 @@ set -e
# next PR number. # next PR number.
CURRENT_NUMBER=`curl -s "https://api.github.com/repos/matrix-org/synapse/issues?state=all&per_page=1" | jq -r ".[0].number"` CURRENT_NUMBER=`curl -s "https://api.github.com/repos/matrix-org/synapse/issues?state=all&per_page=1" | jq -r ".[0].number"`
CURRENT_NUMBER=$((CURRENT_NUMBER+1)) CURRENT_NUMBER=$((CURRENT_NUMBER+1))
echo $CURRENT_NUMBER echo $CURRENT_NUMBER
\ No newline at end of file
#!/bin/bash #!/usr/bin/env bash
# This script builds the Docker image to run the PostgreSQL tests, and then runs # This script builds the Docker image to run the PostgreSQL tests, and then runs
# the tests. # the tests.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment