Meta: Fix sync-local.sh file check
Missing '{'. Thanks to @BenWiederhake for noticing!
This commit is contained in:
parent
f3e85e43c7
commit
ec57c6c836
Notes:
sideshowbarker
2024-07-18 22:43:21 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/ec57c6c8360 Pull-request: https://github.com/SerenityOS/serenity/pull/5186
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue