summaryrefslogtreecommitdiff
path: root/install.ps1
diff options
context:
space:
mode:
authorGeorge Doenlen <gdoenlen@gmail.com>2019-10-22 22:26:33 -0400
committerGeorge Doenlen <gdoenlen@gmail.com>2019-10-22 22:26:33 -0400
commitee311b8e5c0b47030fd05fddeb431319ec41398d (patch)
tree00bf7827ebc7689d6138a875e1f2f7400857197d /install.ps1
parentf0de6c4e9210a3c52cb02e1da758905c78d858dc (diff)
remove execution policy check
Diffstat (limited to 'install.ps1')
-rw-r--r--install.ps17
1 files changed, 0 insertions, 7 deletions
diff --git a/install.ps1 b/install.ps1
index f1a36ad..f644610 100644
--- a/install.ps1
+++ b/install.ps1
@@ -3,13 +3,6 @@
#Requires -Version 5
param($path = "$pwd/rustlings")
-if((Get-ExecutionPolicy) -gt 'RemoteSigned' -or (Get-ExecutionPolicy) -eq 'ByPass') {
- Write-Output "PowerShell requires an execution policy of 'RemoteSigned' to run this script."
- Write-Output "To make this change please run:"
- Write-Output "'Set-ExecutionPolicy RemoteSigned -scope CurrentUser'"
- exit 1
-}
-
Write-Host "Let's get you set up with Rustlings!"
Write-Host "Checking requirements..."