From e59cd4b3056737d1d174bb4ab4411f87cbcd2d20 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 13 Sep 2020 19:28:36 +0200 Subject: [PATCH] Fix typo in IFS variable in the build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 7ad7f25..73cd414 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -IFS='$\n\t' +IFS=$'\n\t' TMP="$(mktemp -d)" git clone --depth=1 https://github.com/godotengine/godot.git "$TMP"