Skip to content

Commit

Permalink
Fix shared object wildcard pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Nov 13, 2023
1 parent 2d04191 commit d754fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matlab/tools/packageMatlabInterface.m
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

% Copy symlinks to package.
dylib = fullfile(toolboxFolder, "+libmexclass", "+proxy", "*.dylib");
so = fullfile(toolboxFolder, "+libmexclass", "+proxy", "*.so");
so = fullfile(toolboxFolder, "+libmexclass", "+proxy", "*.so*");

% Get the filenames and file paths of all dylibs within +proxy
dylibFiles = dir(dylib);
Expand Down

0 comments on commit d754fb4

Please sign in to comment.