Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ templates/basic/terraform.tfvars
templates/.test_azuredevops
templates/.test_github
.vscode/settings.json
/ALZ
/ALZ
.tools
8 changes: 4 additions & 4 deletions src/ALZ/Public/Deploy-Accelerator.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,14 @@ function Deploy-Accelerator {

$ProgressPreference = "SilentlyContinue"

if(-not $skip_requirements_check) {
if($skip_requirements_check.IsPresent) {
Write-InformationColored "WARNING: Skipping the software requirements check..." -ForegroundColor Yellow -InformationAction Continue
} else {
Write-InformationColored "Checking the software requirements for the Accelerator..." -ForegroundColor Green -InformationAction Continue
Test-Tooling
} else {
Write-InformationColored "Skipping the software requirements check..." -ForegroundColor Yellow -InformationAction Continue
}

Write-InformationColored "Getting ready to deploy the accelerator with you..." -ForegroundColor Green -InformationAction Continue
Write-InformationColored "Getting ready to deploy the accelerator with you..." -ForegroundColor Green -NewLineBefore -InformationAction Continue

if ($PSCmdlet.ShouldProcess("Accelerator setup", "modify")) {

Expand Down
Loading