diff options
| author | GitHub Action <[email protected]> | 2025-11-24 04:55:13 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2025-11-24 04:55:13 +0000 |
| commit | 83186b6fedb23807814a4d00a2f9997df16bbf44 (patch) | |
| tree | 2154bd0539960c8cb771cf0907e122a47e238e4e | |
| parent | a3a239967f170423e91382bfdaf1058755befbb8 (diff) | |
| download | opencode-83186b6fedb23807814a4d00a2f9997df16bbf44.tar.gz opencode-83186b6fedb23807814a4d00a2f9997df16bbf44.zip | |
chore: format code
| -rw-r--r-- | nix/scripts/canonicalize-node-modules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/scripts/canonicalize-node-modules.ts b/nix/scripts/canonicalize-node-modules.ts index 828a18fbc..faa6f6340 100644 --- a/nix/scripts/canonicalize-node-modules.ts +++ b/nix/scripts/canonicalize-node-modules.ts @@ -78,7 +78,7 @@ for (const [slug, entry] of Array.from(selections.entries()).sort((a, b) => a[0] const linkPath = join(parent, leaf) const desired = join(entry.dir, "node_modules", slug) const exists = await lstat(desired) - .then(info => info.isDirectory()) + .then((info) => info.isDirectory()) .catch(() => false) if (!exists) { continue |
