Files
lazygit/pkg
Jesse Duffield 2df78b257b don't pass single commands directly to RunCommand (or equivalent function)
when it contains percentages.

This is a really strange one. It's a linting warning in my editor
and it doesn't stop me from compiling, but it breaks `go test`.

A basic file to reproduce what I'm talking about:

package main

import "fmt"

func main() {
	notSprintf("test %s") // compiler complains here thinking %s needs a corresponding argument
}

func notSprintf(formatStr string, formatArgs ...interface{}) string {
	if formatArgs != nil {
		return formatStr
	}
	return fmt.Sprintf(formatStr, formatArgs...)
}
2019-11-21 21:59:25 +11:00
..
2019-11-10 22:32:13 +11:00
2019-11-21 21:16:05 +11:00
2019-03-02 13:39:09 +11:00
2019-11-12 22:58:01 +11:00
2019-11-21 21:15:05 +11:00