c649397029
* Set execute bit on files if and only if they begin with (#!). Git only tracks the 'x' (executable) bit on each file. Prior to this CL, our files were a random mix of executable and non-executable. This change imposes some order by making files executable if and only if they have shebang (#!) lines at the beginning. We don't have any executable binaries checked into the repo, so we shouldn't need to worry about that case. * Added fix_permissions.sh script to set +x iff a file begins with (#!).
25 lines
972 B
PowerShell
Executable File
25 lines
972 B
PowerShell
Executable File
#!/usr/bin/env powershell
|
|
# Install dotnet SDK based on the SDK version from global.json
|
|
|
|
Set-StrictMode -Version 2
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
# avoid "Unknown error on a send" in Invoke-WebRequest
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
|
|
|
$InstallScriptUrl = 'https://dot.net/v1/dotnet-install.ps1'
|
|
$InstallScriptPath = Join-Path "$env:TEMP" 'dotnet-install.ps1'
|
|
$GlobalJsonPath = Join-Path $PSScriptRoot '..' | Join-Path -ChildPath 'global.json'
|
|
|
|
# Resolve SDK version from global.json file
|
|
$GlobalJson = Get-Content -Raw $GlobalJsonPath | ConvertFrom-Json
|
|
$SDKVersion = $GlobalJson.sdk.version
|
|
|
|
# Download install script
|
|
Write-Host "Downloading install script: $InstallScriptUrl => $InstallScriptPath"
|
|
Invoke-WebRequest -Uri $InstallScriptUrl -OutFile $InstallScriptPath
|
|
&$InstallScriptPath -Version $SDKVersion
|
|
|
|
# Also install dotnet SDK LTS which is required to run some of the tests
|
|
&$InstallScriptPath -Version 2.1.802
|