fix(install): Use Join-Path instead of string gluing. (#3566)

This commit is contained in:
Jakub Čábera
2019-10-04 21:22:31 +02:00
committed by Richard Kuhnt
parent 9f693cbb7d
commit 9c04608c48

View File

@@ -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