mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 08:09:51 +00:00
Revert "tui: fix path comparison in theme installer to handle different path formats"
This reverts commit 8ab17f5ce0.
This commit is contained in:
parent
8ab17f5ce0
commit
2b1696f1d1
1 changed files with 1 additions and 2 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue