From f60ceb76e60ba30c50c1211621cab1c99af0158e Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 5 Feb 2017 23:05:12 +0100 Subject: [PATCH] wg-quick: set LC_ALL for consistent regex Signed-off-by: Jason A. Donenfeld --- src/wg-quick.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wg-quick.bash b/src/wg-quick.bash index 5db3485..00f0eda 100755 --- a/src/wg-quick.bash +++ b/src/wg-quick.bash @@ -5,6 +5,7 @@ set -e -o pipefail shopt -s extglob +export LC_ALL=C SELF="$(readlink -f "${BASH_SOURCE[0]}")" export PATH="${SELF%/*}:$PATH"