Fix typo in IFS variable in the build script

This commit is contained in:
Hugo Locurcio
2020-09-13 19:28:36 +02:00
parent d34691186e
commit e59cd4b305

View File

@@ -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"