mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2025-12-09 17:45:39 +00:00
fix(install): Use Join-Path instead of string gluing. (#3566)
This commit is contained in:
committed by
Richard Kuhnt
parent
9f693cbb7d
commit
9c04608c48
@@ -203,7 +203,7 @@ function dl_with_cache_aria2($app, $version, $manifest, $architecture, $dir, $co
|
||||
$urls = @(url $manifest $architecture)
|
||||
|
||||
# aria2 input file
|
||||
$urlstxt = "$cachedir\$app.txt"
|
||||
$urlstxt = Join-Path $cachedir "$app.txt"
|
||||
$urlstxt_content = ''
|
||||
$has_downloads = $false
|
||||
|
||||
|
||||
Reference in New Issue
Block a user