Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else {
}

# Check for existing deployment files
if (-not (Test-Path (Join-Path $projFolder '.web.config'))) {
if (-not (Test-Path (Join-Path $projFolder 'web.config'))) {

# Add needed deployment files for az
az bot prepare-deploy --code-dir $projFolder --lang Typescript --output json | Out-Null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ else {
}

# Check for existing deployment files
if (-not (Test-Path (Join-Path $projFolder '.web.config'))) {
if (-not (Test-Path (Join-Path $projFolder 'web.config'))) {

# Add needed deployment files for az
az bot prepare-deploy --code-dir $projFolder --lang Typescript --output json | Out-Null
Expand Down