migration: fix stray quote

Introduced in a993f0c but likely flew under the radar due to eval caching?
This commit is contained in:
dorkeline 2024-08-23 09:28:26 +02:00
parent ba595e6b0a
commit 8efedea712

View file

@ -121,7 +121,7 @@ in
touch "$STATE_DIRECTORY/uboot-migration-in-progress" touch "$STATE_DIRECTORY/uboot-migration-in-progress"
cp "$UBOOT" "$TMPFILE" cp "$UBOOT" "$TMPFILE"
mv -T "$TMPFILE" "$TARGET_FIRMWARE_DIR/u-boot-rpi-arm64.bin" mv -T "$TMPFILE" "$TARGET_FIRMWARE_DIR/u-boot-rpi-arm64.bin"
echo "${builtins.toString cfg.uboot.package}" " > "$STATE_DIRECTORY/uboot-version" echo "${builtins.toString cfg.uboot.package}" > "$STATE_DIRECTORY/uboot-version"
rm "$STATE_DIRECTORY/uboot-migration-in-progress" rm "$STATE_DIRECTORY/uboot-migration-in-progress"
} }
''} ''}