Skip to content

Commit

Permalink
Fix syntax error with missing parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Nov 15, 2024
1 parent d495f1e commit 996dce2
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 @@ -20,7 +20,7 @@
toolboxVersion = string(getenv("ARROW_MATLAB_TOOLBOX_VERSION"));
if isempty(toolboxVersion)
error("ARROW_MATLAB_TOOLBOX_VERSION environment variable value is empty." + ...
"ARROW_MATLAB_TOOLBOX_VERSION should follow the general form: ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}.";
"ARROW_MATLAB_TOOLBOX_VERSION should follow the general form: ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}.");
end

appendLicenseText(fullfile(toolboxFolder, "LICENSE.txt"));
Expand Down

0 comments on commit 996dce2

Please sign in to comment.