Skip to content

Commit e7e84a4

Browse files
authored
Merge pull request #138 from vidispine/bugfix/wrongAuthHeaderInInstallerPs1
removed bracket at the end of the string
2 parents 51c78f0 + 0419bc6 commit e7e84a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/hull-integration/Installer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ Class Installer
488488
{
489489
throw [Exception]::new("ERROR --> Basic auth environment variable '$($auth.basic.env.password)' for 'password' is empty.")
490490
}
491-
$authHeader = "Basic $([Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes($username + ":" + $password))))"
491+
$authHeader = "Basic $([Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes($username + ":" + $password)))"
492492
$this.WriteLog("++++ Using Basic Auth for User '$($username)'. Password is $(if ($password -ne [String]::Empty) {"not "} else {" "} )empty.")
493493
}
494494

0 commit comments

Comments
 (0)