Merge pull request #872 from nogoegst/fix-unsupported-default-credential-store

Fix compilation of defaultCredentialStore() on unsupported platforms
This commit is contained in:
Daniel Nephin 2018-02-12 11:51:18 -05:00 committed by GitHub
commit dcd62981c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -2,4 +2,6 @@
package credentials
const defaultCredentialsStore = ""
func defaultCredentialsStore() string {
return ""
}