Meta: Fix sync-local.sh file check

Missing '{'. Thanks to @BenWiederhake for noticing!
This commit is contained in:
Linus Groh 2021-01-30 20:47:13 +01:00 committed by Andreas Kling
parent f3e85e43c7
commit ec57c6c836

View file

@ -141,6 +141,6 @@ if [ -f "${SERENITY_ROOT}/Kernel/sync-local.sh" ] || [ -f "${SERENITY_ROOT}/Buil
fi fi
# Run local sync script, if it exists # 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" sh "${SERENITY_ROOT}/sync-local.sh"
fi fi