Skip to content

Commit

Permalink
remove blanks
Browse files Browse the repository at this point in the history
  • Loading branch information
Simonis, Matthias authored and Simonis, Matthias committed Mar 1, 2024
1 parent c938a52 commit 10e1ce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions golang/vaas/cmd/git-scan/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ func main() {
if !exists {
vaasUrl = "wss://gateway.production.vaas.gdatasecurity.de/"
}
log.Println("vaas url: ", vaasUrl)
log.Println("vaas url:", vaasUrl)
tokenUrl, exists := os.LookupEnv("VAAS_TOKEN_URL")
if !exists {
tokenUrl = "https://account.gdata.de/realms/vaas-production/protocol/openid-connect/token"
}
log.Println("token url: ", tokenUrl)
log.Println("token url:", tokenUrl)

gitRevParseCommand := exec.Command("git", "rev-parse", "--show-toplevel")
rootDirectoryBytes, err := gitRevParseCommand.CombinedOutput()
Expand Down

0 comments on commit 10e1ce9

Please sign in to comment.