Skip to content

Commit

Permalink
add nightly-dev to branch selector (#33932)
Browse files Browse the repository at this point in the history
top
  • Loading branch information
maxime-desroches authored Nov 5, 2024
1 parent e7d4139 commit 5a06d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/ui/qt/offroad/software_settings.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ SoftwarePanel::SoftwarePanel(QWidget* parent) : ListWidget(parent) {
connect(targetBranchBtn, &ButtonControl::clicked, [=]() {
auto current = params.get("GitBranch");
QStringList branches = QString::fromStdString(params.get("UpdaterAvailableBranches")).split(",");
for (QString b : {current.c_str(), "devel-staging", "devel", "nightly", "master-ci", "master"}) {
for (QString b : {current.c_str(), "devel-staging", "devel", "nightly", "nightly-dev", "master-ci", "master"}) {
auto i = branches.indexOf(b);
if (i >= 0) {
branches.removeAt(i);
Expand Down

0 comments on commit 5a06d1d

Please sign in to comment.