瀏覽代碼

Meta: Fix sync-local.sh file check

Missing '{'. Thanks to @BenWiederhake for noticing!
Linus Groh 4 年之前
父節點
當前提交
ec57c6c836
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Meta/build-root-filesystem.sh

+ 1 - 1
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