We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cee76b commit f94dce3Copy full SHA for f94dce3
main.go
@@ -51,7 +51,7 @@ func main() {
51
if commitRange == "" {
52
if strings.ToLower(os.Getenv("TRAVIS")) == "true" && !*flNoTravis {
53
if os.Getenv("TRAVIS_COMMIT_RANGE") != "" {
54
- commitRange = strings.Replace("...", "..", os.Getenv("TRAVIS_COMMIT_RANGE"), 1)
+ commitRange = strings.Replace(os.Getenv("TRAVIS_COMMIT_RANGE"), "...", "..", 1)
55
} else if os.Getenv("TRAVIS_COMMIT") != "" {
56
commitRange = os.Getenv("TRAVIS_COMMIT")
57
}
0 commit comments