Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
Fix typo in test-path
Browse files Browse the repository at this point in the history
  • Loading branch information
HackXIt committed Nov 27, 2023
1 parent e6508b9 commit e31141b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/windows/build_exe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Write-Output 'INFO: Building executable with PyInstaller'
poetry run pyinstaller $TargetSpecFile

# Check for build success and output location
if (Test-Path "dist\$Target\$Target.exe") {
Write-Output 'INFO: Build successful. Executable located in dist\SpeechJokey'
if (Test-Path "dist\$Target.exe") {
Write-Output "INFO: Build successful. Executable located in dist\$Target.exe"
} else {
Write-Output 'ERROR: Build failed.'
exit 1
Expand Down

0 comments on commit e31141b

Please sign in to comment.