Skip to content

Commit 59b9f46

Browse files
fix: update script paths for consistency in deployment hooks
1 parent ecbd315 commit 59b9f46

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

azure.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ hooks:
4646
4747
# Check if running from bash/MINGW64 terminal
4848
if ($env:SHELL -like "*bash*" -or $env:TERM_PROGRAM -like "*git*" -or $env:MSYSTEM -eq "MINGW64") {
49-
Write-Host " bash ./scripts/build_and_push_images.sh" -ForegroundColor Cyan
49+
Write-Host " bash scripts/build_and_push_images.sh" -ForegroundColor Cyan
5050
} else {
51-
Write-Host " ./scripts/build_and_push_images.ps1" -ForegroundColor Cyan
51+
Write-Host " .\scripts\build_and_push_images.ps1" -ForegroundColor Cyan
5252
}
5353
5454
Write-Host ""
@@ -61,7 +61,7 @@ hooks:
6161
run: |
6262
echo "===== Provisioning Complete ====="
6363
echo "=> Next step: build and push container images to the dedicated ACR (remote build):"
64-
echo " bash ./scripts/build_and_push_images.sh"
64+
echo " bash scripts/build_and_push_images.sh"
6565
echo ""
6666
echo "Web app URL: $WEB_APP_URL"
6767
shell: sh

0 commit comments

Comments
 (0)