File tree 2 files changed +3
-3
lines changed
deps/tools/configServer/src
stage5/01-sys-tweaks/files
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -199,10 +199,10 @@ void RomiStatus::FirmwareUpdate(std::function<void(std::string_view)> onFail) {
199
199
// create pipe to capture stdout
200
200
auto pipe = uv::Pipe::Create (m_loop);
201
201
if (auto proc = uv::Process::Spawn (
202
- m_loop, " /usr/bin/python " ,
202
+ m_loop, " /usr/bin/python3 " ,
203
203
pipe ? uv::Process::StdioCreatePipe (1 , *pipe , UV_WRITABLE_PIPE)
204
204
: uv::Process::Option (),
205
- " /usr/bin/python " , " /usr/src/wpilib-ws-romi/scripts/uploadRomi.py" )) {
205
+ " /usr/bin/python3 " , " /usr/src/wpilib-ws-romi/scripts/uploadRomi.py" )) {
206
206
// send stdout output to firmware log
207
207
if (pipe ) {
208
208
pipe ->StartRead ();
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python3 -u
1
+ #!/usr/bin/env python3
2
2
3
3
# This file uploads to the Romi using a USB cable
4
4
You can’t perform that action at this time.
0 commit comments