Skip to content
This repository was archived by the owner on Mar 27, 2025. It is now read-only.

Commit 6fdd233

Browse files
author
Nikhil Bhoski
committed
Updated command help text as per review.
1 parent 220c6c7 commit 6fdd233

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed
Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<div>
2-
Enter the command you want to run in MATLAB. If the command represents a MATLAB function or script, do not specify the file extension.<br>
3-
<b>Examples:</b><br>
4-
<b>Run commands:</b> results = runtests(‘IncludingSubfolders’,true); assert(all(~[results.Failed]))<br>
5-
<b>Run a script:</b> runMyScript<br>
2+
Insert the MATLAB commands you want to execute in the <b>Command</b> box. If you need to specify more than one command, use a comma or semicolon to separate the commands.<br>
3+
<b>Example: </b>results = runtests, assertSuccess(results);<br><br>
4+
If you need to specify several MATLAB commands, consider writing a MATLAB script or function and executing this script or function instead. (To run a script or function, do not specify the file extension.)<br>
5+
<b>Example: </b>myscript<br>
66
<br>&nbsp;</br>
7-
<b>Recommendation:</b><ul><li>If you require a number of MATLAB commands to execute your build, consider writing a MATLAB script and executing the script file instead.<br>
8-
</li>
9-
<li>Input text box supports commands only in ASCII format. For locale specific commands, Write a MATLAB script using the supported chracater encoding and execute the script file.</li>
7+
<b>Note:</b><ul><li>The build fails if the execution of any command results in an error.</li>
8+
<li>If the build uses a MATLAB version prior to R2020a, MATLAB might display non-ASCII characters, specified in the <b>Command</b> box, as garbled text. If you specify non-ASCII characters in your commands, consider running your commands as a <b>.m</b> file created in the same locale that MATLAB uses on the build agent</li>
109
</ul>
11-
<b>Note:</b> The build will fail if the execution of any MATLAB command causes an error.
12-
<br>
1310
</div>

0 commit comments

Comments
 (0)