Skip to content

Commit

Permalink
Incorrect cell indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
sanguinariojoe committed Oct 24, 2024
1 parent 07902d7 commit 742279e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/matlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
command: |
mex('-setup', '-v', 'C');
cd('wrappers/matlab/');
fnames = cell2mat(struct2table(dir('*.cpp')).name);
fnames = struct2table(dir('*.cpp')).name;
for i = 1:length(fnames)
fname = fnames(i)
fname = cell2mat(fnames(i))
fprintf('Compiling %s...\n', fname)
mex('-v', fname, '-I./', '-L${{github.workspace}}/install', '-lmoordyn');
end
Expand Down

0 comments on commit 742279e

Please sign in to comment.