Revert "tui: fix path comparison in theme installer to handle different path formats"

This reverts commit 8ab17f5ce0.
This commit is contained in:
Dax Raad
2026-04-16 11:28:19 -04:00
parent 8ab17f5ce0
commit 2b1696f1d1

View File

@@ -194,8 +194,7 @@ function createThemeInstaller(
}
return
}
if (path.normalize(prev?.dest ?? "") === path.normalize(dest) && prev.mtime === mtime && prev.size === size)
return
if (prev?.dest === dest && prev.mtime === mtime && prev.size === size) return
}
const text = await Filesystem.readText(src).catch((error) => {