aboutsummaryrefslogtreecommitdiffstats
path: root/internal/build/env.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/build/env.go')
-rw-r--r--internal/build/env.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/build/env.go b/internal/build/env.go
index b7aa0f122..95f00035d 100644
--- a/internal/build/env.go
+++ b/internal/build/env.go
@@ -57,7 +57,7 @@ func Env() Environment {
case os.Getenv("CI") == "true" && os.Getenv("TRAVIS") == "true":
commit := os.Getenv("TRAVIS_PULL_REQUEST_SHA")
if commit == "" {
- os.Getenv("TRAVIS_COMMIT")
+ commit = os.Getenv("TRAVIS_COMMIT")
}
return Environment{
Name: "travis",
@@ -73,7 +73,7 @@ func Env() Environment {
case os.Getenv("CI") == "True" && os.Getenv("APPVEYOR") == "True":
commit := os.Getenv("APPVEYOR_PULL_REQUEST_HEAD_COMMIT")
if commit == "" {
- os.Getenv("APPVEYOR_REPO_COMMIT")
+ commit = os.Getenv("APPVEYOR_REPO_COMMIT")
}
return Environment{
Name: "appveyor",