Skip to content

Commit

Permalink
Differentiate expected output formatting, improve clone command
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewCalligaro committed Jan 27, 2021
1 parent da4c3ac commit 8a0d08a
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/html_extra/tool_setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@

function generateGitCommand(clonePath, cloneLink, repoName) {
return `cd ${clonePath}<br>
git clone ${cloneLink}<br>
cd ${repoName}<br>`;
git clone ${cloneLink}<br>`;
}

function generateConfigCommand(repoPath, ip, teamName, os) {
Expand Down Expand Up @@ -240,6 +239,12 @@
font-size: 18px;
}

p.output {
background-color: white;
font-family: 'Consolas', 'Courier New', Courier, monospace;
font-size: 18px;
}

td.error {
color: red;
}
Expand Down Expand Up @@ -370,7 +375,7 @@ <h3>5. Setup racecar tool</h3>

<p>To test that the racecar tool was set up correctly, enter "racecar test" into the terminal. It should print
the following output:</p>
<p id="pOutputTest" class="code">[This will be blank until you complete step 2]</p>
<p id="pOutputTest" class="output">[This will be blank until you complete step 2]</p>
<p>If it does not, consult the troubleshooting help <a
href="https://mitll-racecar-mn.readthedocs.io/en/latest/gettingStarted/computerSetup.html#troubleshooting">here</a>
</p>
Expand Down

0 comments on commit 8a0d08a

Please sign in to comment.