mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Updated version for beta 1 (#270)
This commit is contained in:
@@ -39,7 +39,7 @@ RobotBase::RobotBase() : m_ds(DriverStation::GetInstance()) {
|
||||
file = std::fopen("/tmp/frc_versions/FRC_Lib_Version.ini", "w");
|
||||
|
||||
if (file != nullptr) {
|
||||
std::fputs("2016 C++ Release 5", file);
|
||||
std::fputs("v2017.1.0-beta-1", file);
|
||||
std::fclose(file);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,7 +215,7 @@ public abstract class RobotBase {
|
||||
file.createNewFile();
|
||||
|
||||
try (FileOutputStream output = new FileOutputStream(file)) {
|
||||
output.write("2016 Java Release 5".getBytes());
|
||||
output.write("v2017.1.0-beta-1".getBytes());
|
||||
}
|
||||
|
||||
} catch (IOException ex) {
|
||||
|
||||
Reference in New Issue
Block a user