From 990bb60a6f485a580915edebbbab382ac31a4268 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 14 Jan 2019 15:14:32 +0000 Subject: [PATCH] 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. --- tools/choose-default-locale.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/choose-default-locale.sh b/tools/choose-default-locale.sh index 43087980a94..3b3003835ce 100755 --- a/tools/choose-default-locale.sh +++ b/tools/choose-default-locale.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e -- 2.47.3