Sync installer.ps1: 2024-12-08 00:09

This commit is contained in:
Aoran Zeng 2024-12-08 00:09:13 +08:00
parent cda9513f60
commit 3ae1f1fc5a
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

View File

@ -5,7 +5,7 @@
# Contributors : Aoran Zeng <ccmywish@qq.com> # Contributors : Aoran Zeng <ccmywish@qq.com>
# | # |
# Created On : <2024-10-26> # Created On : <2024-10-26>
# Last Modified : <2024-10-27> # Last Modified : <2024-12-07>
# #
# chsrc installer for Windows # chsrc installer for Windows
# --------------------------------------------------------------- # ---------------------------------------------------------------
@ -160,9 +160,11 @@ function Install {
} }
try { try {
$outfile = "\${binary_name}.exe"
output_info "Downloading $binary_name ($global:arch architecture, $platform platform, version $global:version) to $global:install_dir ..." output_info "Downloading $binary_name ($global:arch architecture, $platform platform, version $global:version) to $global:install_dir ..."
Invoke-WebRequest -OutFile ($global:install_dir + "\$binary_name") -Uri $global:url -ErrorAction Stop Invoke-WebRequest -OutFile ($global:install_dir + $outfile) -Uri $global:url -ErrorAction Stop
output_info "🎉 Installation completed, destination dir: $global:install_dir" # 🎉 这个符号会变成 ??? 不要添加
output_info "Installation completed, destination: " ($global:install_dir + $outfile)
} catch { } catch {
output_error "Unable to download $binary_name. Error: $_" output_error "Unable to download $binary_name. Error: $_"
} }