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

Commit

Permalink
add some error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
lexkoro committed Oct 16, 2021
1 parent c638df9 commit b2e222b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Binary file modified GameTTS.dll
Binary file not shown.
Binary file modified GameTTS.pdb
Binary file not shown.
6 changes: 5 additions & 1 deletion bin/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,9 @@ try {
Write-Host "No Python installation found"
}
}
catch [System.SystemException] { "An error occurred during the installation of dependencies." }
catch [System.SystemException] {
Write-Host "An error occurred during the installation of dependencies."
Write-Host $Error
exit -1
}

0 comments on commit b2e222b

Please sign in to comment.