Skip to content

Commit

Permalink
Merge pull request #477 from SysBioChalmers/develop
Browse files Browse the repository at this point in the history
fix: checkInstallation warning, not error
  • Loading branch information
edkerk authored Mar 21, 2023
2 parents 1a0ab44 + fff2dab commit 5b48c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/checkInstallation.m
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ function checkInstallation(developMode)
for i=1:numel(binList)
[status,cmdout] = system(['chmod +x "' binList{i} '".(mexa64|mexglx|mexmaci64|mac|bat)']);
if status ~= 0
error('Failed to make %s executable: %s ',binList{i},strip(cmdout))
warning('Failed to make %s executable: %s ',binList{i},strip(cmdout))
end
end

Expand Down

0 comments on commit 5b48c22

Please sign in to comment.