Skip to content

Commit

Permalink
Fix Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Sep 22, 2024
1 parent 1786b43 commit 9ae10bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/run-help.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
name: msvc-${{ matrix.arch }}
- name: Display help
run: >
$result = & lmms-*.exe "--help" |
$exe = Get-ChildItem -Path . -Filter "lmms-*.exe" | Select-Object -First 1;
if ($null -eq $exe) { exit 1 };
$result = & $exe.FullName "--help" |
Select-String "Usage: lmms";
if($result.Matches.Count -eq 0) { exit 1 }

0 comments on commit 9ae10bd

Please sign in to comment.