We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5afc1f commit 52a914dCopy full SHA for 52a914d
action.ps1
@@ -1,13 +1,12 @@
1
-#!/usr/bin/env pwsh
2
-# $ErrorActionPreference = 'Stop' # Stop immediately on error, this will not lead into unwated comments.
+# Set Global Preference
+$Global:ErrorActionPreference = 'Continue'
3
+$Global:VerbosePreference = 'Continue'
4
5
# Import all modules
6
Join-Path $PSScriptRoot 'src' | Get-ChildItem -File | Select-Object -ExpandProperty Fullname | Import-Module
7
8
Install-Scoop
9
-$VerbosePreference = 'Continue' # Preserve verbose in logs
10
-
11
Test-NestedBucket
12
Initialize-NeededConfiguration
13
0 commit comments