build(travis): add release config

This commit is contained in:
Nightapes
2019-06-18 21:35:51 +02:00
parent f65b90975f
commit 7de6f249fe
7 changed files with 17 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ func GetAccessToken(providerName string) (string, error) {
log.Debugf("check if %s environment variable is set", envName)
if token, exists = os.LookupEnv(envName); !exists {
return "", fmt.Errorf("Could not find %s in the enviroment variables. Please check if it is set", envName)
return "", fmt.Errorf("could not find %s in the enviroment variables. Please check if it is set", envName)
}
return token, nil
}