Skip to content

Commit

Permalink
Patch download_ap.ps1
Browse files Browse the repository at this point in the history
Will use an absolute path to refer to the test program when testing for execute permission (attempt 2)

[skip ci]
  • Loading branch information
atruskie authored Aug 10, 2021
1 parent 9a50c8d commit 4604e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/download_ap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ $actions = [ordered]@{
} )
"Check" = ("AP executable should have execute permission", {
if($IsWindows) { return $null }
$(/bin/test -x $ap_path ; 0 -eq $LASTEXITCODE)
$(/usr/bin/test -x $ap_path ; 0 -eq $LASTEXITCODE)
} )
"Uninstall" = $null
}
Expand Down

0 comments on commit 4604e4e

Please sign in to comment.