Sfoglia il codice sorgente

Meta: Fix sync-local.sh file check

Missing '{'. Thanks to @BenWiederhake for noticing!
Linus Groh 4 anni fa
parent
commit
ec57c6c836
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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