Skip to content

Commit 9124e2c

Browse files
committed
Fixes a few small extension bugs.
1 parent ae84cf3 commit 9124e2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

FRC-Extension/Buttons/DeployDebugButton.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public override async void ButtonCallback(object sender, EventArgs e)
2828
{
2929
try
3030
{
31-
m_output.ProgressBarLabel = "m_deploying Robot Code";
31+
m_output.ProgressBarLabel = "Deploying Robot Code";
3232

3333
SettingsPageGrid page;
3434
string teamNumber = m_package.GetTeamNumber(out page);

FRC-Extension/RoboRIOCode/DeployManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,8 @@ public async Task UploadCode(string robotName, SettingsPageGrid page, bool debug
294294
}
295295

296296
//Must be run as admin, so is seperate
297-
await RoboRIOConnection.RunCommand("killall netconsole-host", ConnectionUser.Admin);
297+
//Check to see if the thing below is in the official extension.
298+
//await RoboRIOConnection.RunCommand("killall netconsole-host", ConnectionUser.Admin);
298299

299300
//Combining all other commands, since they should be safe running together.
300301
List<string> commands = new List<string>();

0 commit comments

Comments
 (0)