sizerExe(): add a `default` clause to the `switch` statement

Humor the linter.
This commit is contained in:
Michael Haggerty 2021-11-07 15:31:44 +01:00
Родитель a075a1bf15
Коммит 24c73607bd
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -27,10 +27,12 @@ import (
func sizerExe(t *testing.T) string {
t.Helper()
v := "bin/git-sizer"
var v string
switch runtime.GOOS {
case "windows":
v = `bin\git-sizer.exe`
default:
v = "bin/git-sizer"
}
v, err := exec.LookPath(v)