Skip to content

Commit

Permalink
fixes #3026
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed Oct 21, 2024
1 parent 7ab13ec commit 7fc1ca7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions content/path-search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const resolver = new class {
this.cache.set($varName, '')
}
else if (value = ENV.get(varName) || '') {
log.debug('3026: resolved', varName, 'to', value)
this.cache.set($varName, this.resolve(value, { ...seen, [varName]: true }))
}
else {
Expand Down Expand Up @@ -81,7 +80,6 @@ async function pathSearch(bin: string, installationDirectory: { mac?: string[];
for (const ext of extensions) {
try {
const exe: string = $OS.Path.join(path, bin + ext)
log.debug('3026:', exe)
if (!(await $OS.File.exists(exe))) continue

// eslint-disable-next-line @typescript-eslint/await-thenable
Expand Down

0 comments on commit 7fc1ca7

Please sign in to comment.