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

Commit

Permalink
Merge pull request #4 from lexkoro/dev
Browse files Browse the repository at this point in the history
add some error handling
  • Loading branch information
lexkoro committed Oct 16, 2021
2 parents 90d1af5 + b2e222b commit dec8861
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 dec8861

Please sign in to comment.