File tree 3 files changed +4
-4
lines changed 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ _____________________________________________________________________________
10
10
11
11
BSD 3-Clause "New" or "Revised" License
12
12
13
- Copyright (C) Intel Corporation. All rights reserved.
13
+ Copyright (C) 2019, Intel Corporation. All rights reserved.
14
14
15
15
16
16
Redistribution and use in source and binary forms, with or without modification,
Original file line number Diff line number Diff line change 1
1
module github.com/intel/oneapi-cli
2
2
3
- go 1.20
3
+ go 1.24.1
4
4
5
5
require (
6
6
github.com/gdamore/tcell v1.4.0
Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ func (cli *CLI) selectLang() {
126
126
continue
127
127
}
128
128
list .AddItem (k , "" , start , func () {
129
- i := list .GetCurrentItem () //List doesnt support a reference
130
- cli .selectProject (cli . aggregator . GetLanguages ()[ i ] )
129
+ lang , _ := list .GetItemText ( list . GetCurrentItem ())
130
+ cli .selectProject (lang )
131
131
})
132
132
start ++
133
133
}
You can’t perform that action at this time.
0 commit comments