Skip to content

Commit

Permalink
fix: string interpolation (#122)
Browse files Browse the repository at this point in the history
* fix: String interpolation uses backtick

* chore: fmt

* chore: fmt
  • Loading branch information
i10416 committed Jun 18, 2024
1 parent 629028e commit bbcfdc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function getArch(): Error | string {
case 'arm64':
return 'aarch64';
default:
return Error('Unsupported arch "${process.arch}"');
return Error(`Unsupported arch "${process.arch}"`);
}
}

Expand All @@ -126,7 +126,7 @@ function getPlatform(): Error | string {
case 'linux':
return 'unknown-linux-musl';
default:
return Error('Unsupported platform "${process.platform}"');
return Error(`Unsupported platform "${process.platform}"`);
}
}

Expand Down

0 comments on commit bbcfdc3

Please sign in to comment.