Skip to content

Commit

Permalink
bonk
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan09811 authored Jun 9, 2024
1 parent e99d3e6 commit f9334c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/Windows_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ jobs:
- name: Verify glslangValidator installation
shell: pwsh
run: |
if (& "${{github.workspace}}/glslang/bin/glslangValidator.exe" --version) {
$glslangValidatorPath = "${{github.workspace}}/glslang/bin/glslangValidator.exe"
if (Test-Path $glslangValidatorPath) {
Write-Output "glslangValidator is installed successfully."
& $glslangValidatorPath --version
} else {
Write-Error "glslangValidator could not be found."
exit 1
Expand Down

0 comments on commit f9334c4

Please sign in to comment.