Skip to content

Commit

Permalink
Fix Octave mex-file build condition for Linux
Browse files Browse the repository at this point in the history
The conditional check for building the Octave mex-file has been corrected. Previously, the build step for the Octave mex-file was incorrectly set to run on Windows (`if: runner.os == 'Windows'`). This has been changed to run on Linux (`if: runner.os == 'Linux'`).
  • Loading branch information
ptahmose committed Oct 18, 2024
1 parent 76c1cc8 commit 4b0b769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
cp build/MEXlibCZI/Release/libmexlibczi.dll %GITHUB_WORKSPACE%\OctaveMex
dir %GITHUB_WORKSPACE%\OctaveMex
- name: build Octave mex-file (Linux)
if: runner.os == 'Windows'
if: runner.os == 'Linux'
shell: cmd
run: |
cd OctaveMex
Expand Down

0 comments on commit 4b0b769

Please sign in to comment.