From 996dce2a4cde90d620735b539d78bbc21e05f121 Mon Sep 17 00:00:00 2001 From: Kevin Gurney Date: Fri, 15 Nov 2024 13:54:43 -0500 Subject: [PATCH] Fix syntax error with missing parenthesis. --- matlab/tools/packageMatlabInterface.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/tools/packageMatlabInterface.m b/matlab/tools/packageMatlabInterface.m index 93b19d7a221bf..50012de4187a4 100644 --- a/matlab/tools/packageMatlabInterface.m +++ b/matlab/tools/packageMatlabInterface.m @@ -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"));