Skip to content

Commit f397b64

Browse files
authored
Fix program kill restarting robot code (#704)
1 parent 353ee05 commit f397b64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/edu/wpi/first/gradlerio/deploy/roborio/FRCProgramKillArtifact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ public void deploy(DeployContext ctx) {
3232
}
3333
ctx.execute("mv /usr/local/frc/bin/frcKillRobot.sh.tmp /usr/local/frc/bin/frcKillRobot.sh && chmod +x /usr/local/frc/bin/frcKillRobot.sh");
3434
ctx.execute("sync");
35-
ctx.execute(". /etc/profile.d/natinst-path.sh; /usr/local/frc/bin/frcKillRobot.sh -t -r 2> /dev/null");
35+
ctx.execute(". /etc/profile.d/natinst-path.sh; /usr/local/frc/bin/frcKillRobot.sh -t 2> /dev/null");
3636
}
3737
}

0 commit comments

Comments
 (0)