Skip to content

Commit

Permalink
Test (entrypoint): Improve entrypoint script
Browse files Browse the repository at this point in the history
  • Loading branch information
joeltimothyoh committed Sep 3, 2024
1 parent be3c5e4 commit 695618e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
param (
[Parameter(Mandatory=$false)]
[ValidateNotNullOrEmpty()]
[string]$Tag = ''
[string]$Tag
)

Set-StrictMode -Version Latest
Expand Down Expand Up @@ -67,7 +67,7 @@ try {
throw
}finally {
"Listing test artifacts" | Write-Host
Push-Location "$(git rev-parse --show-toplevel)"
Push-Location (git rev-parse --show-toplevel)
git ls-files --others --exclude-standard
Pop-Location

Expand Down

0 comments on commit 695618e

Please sign in to comment.