From 6e6f6906748b03814024903f1c84a60f18b47073 Mon Sep 17 00:00:00 2001 From: Kinetic27 Date: Sat, 8 Aug 2026 19:37:45 +0900 Subject: [PATCH] fix(installer): make managed root check locale independent --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5fdac36..cbd8947 100755 --- a/install.sh +++ b/install.sh @@ -62,7 +62,7 @@ verify_checksum() { [ "$actual" = "$expected" ] || fail "checksum verification failed for $(basename "$payload")" } read_managed_root_metadata() { - metadata=$(stat -c '%F|%u|%d|%i|%a' -- "$INSTALL_ROOT") || fail "could not inspect managed root" + metadata=$(LC_ALL=C stat -c '%F|%u|%d|%i|%a' -- "$INSTALL_ROOT") || fail "could not inspect managed root" old_ifs=$IFS IFS='|' read root_type root_uid root_device root_inode root_mode <