[wpilib] Remove version writes (#8003)

This will use a much different mechanism in the future.
This commit is contained in:
Thad House
2025-06-02 16:41:47 -07:00
committed by GitHub
parent a4cf2ea6ec
commit 4d74ea6278
4 changed files with 0 additions and 88 deletions

View File

@@ -216,17 +216,6 @@ RobotBase::RobotBase() {
SmartDashboard::init();
if constexpr (!IsSimulation()) {
std::FILE* file = nullptr;
file = std::fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
if (file != nullptr) {
std::fputs("C++ ", file);
std::fputs(GetWPILibVersion(), file);
std::fclose(file);
}
}
// Call DriverStation::RefreshData() to kick things off
DriverStation::RefreshData();
}