diff options
| author | Halldor Fannar <[email protected]> | 2016-08-26 12:04:20 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-08-26 12:04:20 +0000 |
| commit | fbef9608646c482d576bc730726b74396b052bdc (patch) | |
| tree | 440736083273aed5f81fddc4838d3ac104a0b662 | |
| parent | Removed nvsf_ prefix from all shader variables. (diff) | |
| download | waveworks_archive-fbef9608646c482d576bc730726b74396b052bdc.tar.xz waveworks_archive-fbef9608646c482d576bc730726b74396b052bdc.zip | |
Removing commented out script code
| -rw-r--r-- | packman/windows/configure/fetch_file_from_s3.ps1 | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/packman/windows/configure/fetch_file_from_s3.ps1 b/packman/windows/configure/fetch_file_from_s3.ps1 index 9e1b457..4d20a7f 100644 --- a/packman/windows/configure/fetch_file_from_s3.ps1 +++ b/packman/windows/configure/fetch_file_from_s3.ps1 @@ -4,16 +4,10 @@ param( ) $source = "http://packman.s3.amazonaws.com/" + $sourceName $filename = $output -#$key64 = 'QHV0ME1AdDNHVEwkY3IxcHQk' -#$key = [System.Text.Encoding]::GetEncoding(1252).GetString([Convert]::FromBase64String($key64)) -#$key = $key | ConvertTo-SecureString -asPlainText -Force -#$credential = New-Object System.Management.Automation.PSCredential('svcgtlautomate', $key) -#$cache = New-Object System.Net.CredentialCache -#$cache.Add( "http://sso.nvidia.com", "NTLM", $credential) $req = [System.Net.httpwebrequest]::Create($source) $req.cookiecontainer = New-Object System.net.CookieContainer -#$req.Credentials = $cache + Write-Host "Connecting to S3 ..." $res = $req.GetResponse() |