Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bugarela committed Sep 5, 2024
1 parent c858e14 commit 0e2e13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quint/src/apalache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ function downloadAndUnpackApalache(): Promise<ApalacheResult<null>> {
* - a `left<ApalacheError>` indicating an error.
*/
async function fetchApalache(verbosityLevel: number): Promise<ApalacheResult<string>> {
const filename = process.platform === "win32" ? 'apalache-mc.bat' : 'apalache-mc'
const filename = process.platform === 'win32' ? 'apalache-mc.bat' : 'apalache-mc'
const apalacheBinary = path.join(apalacheDistDir(), 'apalache', 'bin', filename)
if (fs.existsSync(apalacheBinary)) {
// Use existing download
Expand Down

0 comments on commit 0e2e13c

Please sign in to comment.