mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
85f5ae8ec7
Make various lint corrections in order to appease `staticcheck`.
23 lines
592 B
Go
23 lines
592 B
Go
package cheatpath
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Writeable returns a writeable Cheatpath
|
|
func Writeable(cheatpaths []Cheatpath) (Cheatpath, error) {
|
|
|
|
// iterate backwards over the cheatpaths
|
|
// NB: we're going backwards because we assume that the most "local"
|
|
// cheatpath will be specified last in the configs
|
|
for i := len(cheatpaths) - 1; i >= 0; i-- {
|
|
// if the cheatpath is not read-only, it is writeable, and thus returned
|
|
if !cheatpaths[i].ReadOnly {
|
|
return cheatpaths[i], nil
|
|
}
|
|
}
|
|
|
|
// otherwise, return an error
|
|
return Cheatpath{}, fmt.Errorf("no writeable cheatpaths found")
|
|
}
|