diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2019-01-14 16:14:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2019-01-17 18:06:16 +0100 |
commit | 990bb60a6f485a580915edebbbab382ac31a4268 (patch) | |
tree | 9d2949a3945854306e518f330dd9c06e59e1d96e /tools | |
parent | hwdb: Add Huawei section and remap keys (#11406) (diff) | |
download | systemd-990bb60a6f485a580915edebbbab382ac31a4268.tar.xz systemd-990bb60a6f485a580915edebbbab382ac31a4268.zip |
tools/choose-default-locale.sh: set shebang to /bin/sh
The script does not use any bash features.
On NixOS we have /bin/sh and /usr/bin/env for posix compatibility
but not /bin/bash as it is stored in our nix store.
With this change one can run the `meson configure` without patching
which greatly helps, when working on upstream contributions.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/choose-default-locale.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/choose-default-locale.sh b/tools/choose-default-locale.sh index 43087980a9..3b3003835c 100755 --- a/tools/choose-default-locale.sh +++ b/tools/choose-default-locale.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e |