Skip to content

Commit

Permalink
Update download_ap.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie authored Nov 2, 2022
1 parent 97cda92 commit e5756e1
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 @@ -172,7 +172,7 @@ $alias_path = PickForOS "${Destination}${dir_seperator}AP.exe" "${home}/.local/b
$binary_name = PickForOS "AnalysisPrograms.exe" "AnalysisPrograms" "AnalysisPrograms"
$ap_path = "$Destination$dir_seperator$binary_name"
$version_regex = '\d{2}\.\d{1,2}\.\d{1,2}\.\d{1,2}'
$zsh_exists = $(which zsh; $LASTEXITCODE -eq 0)
$zsh_exists = if($IsWindows) { $false } else { $(which zsh; $LASTEXITCODE -eq 0) }

if ($Version) {

Expand Down

0 comments on commit e5756e1

Please sign in to comment.