From ec57c6c83601d354e3103e4c668c3ef4a4cadf8f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 30 Jan 2021 20:47:13 +0100 Subject: [PATCH] Meta: Fix sync-local.sh file check Missing '{'. Thanks to @BenWiederhake for noticing! --- Meta/build-root-filesystem.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index 6766ec01e33..977dff253b0 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -141,6 +141,6 @@ if [ -f "${SERENITY_ROOT}/Kernel/sync-local.sh" ] || [ -f "${SERENITY_ROOT}/Buil fi # Run local sync script, if it exists -if [ -f "$SERENITY_ROOT}/sync-local.sh" ]; then +if [ -f "${SERENITY_ROOT}/sync-local.sh" ]; then sh "${SERENITY_ROOT}/sync-local.sh" fi