Skip to content

Commit

Permalink
Updated build plugin error message
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Jul 1, 2024
1 parent b54d0df commit 510af9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/+ciplugins/+github/BuildSummaryPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function runTaskGraph(plugin, pluginData)
[fID, msg] = fopen(fullfile(getenv("RUNNER_TEMP") ,"buildSummary_" + getenv("GITHUB_RUN_ID") + ".json"), "w");

if fID == -1
warning("ciplugins:github:BuildSummaryPlugin:UnableToOpenFile","Could not open a file for GitHub build summary table due to: %s", msg);
warning("ciplugins:github:BuildSummaryPlugin:UnableToOpenFile","Unable to open a file required to create the MATLAB build summary table: %s", msg);
else
closeFile = onCleanup(@()fclose(fID));
taskDetails = struct();
Expand Down

0 comments on commit 510af9b

Please sign in to comment.