Skip to content

Commit

Permalink
fix: Use platform agnostic command name
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanmenzel committed Oct 16, 2024
1 parent df40d08 commit 88a08ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/puya/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ export function invokePuya({

logger.debug(
undefined,
`Invoking puya: puya.exe --options ${optionsFile.filePath} --awst ${moduleAwstFile.filePath} --source-annotations ${moduleSourceFile.filePath}`,
`Invoking puya: puya --options ${optionsFile.filePath} --awst ${moduleAwstFile.filePath} --source-annotations ${moduleSourceFile.filePath}`,
)
runChildProc({
command: 'puya.exe',
command: 'puya',
args: [
'--options',
optionsFile.filePath,
Expand Down

0 comments on commit 88a08ee

Please sign in to comment.