Aways download if LastWriteTime not there
parent
87d00d35fc
commit
ab50fc5aac
|
@ -185,7 +185,13 @@ if (Test-Network) {
|
|||
$Script:ReachNoPath = $False
|
||||
}
|
||||
if ($NewList) {
|
||||
Write-ToLog "Newer List downloaded/copied to local path: $($WAUConfig.InstallLocation.TrimEnd(" ", "\"))" "Yellow"
|
||||
if ($AlwaysDownloaded) {
|
||||
Write-ToLog "List downloaded/copied to local path: $($WAUConfig.InstallLocation.TrimEnd(" ", "\"))" "Yellow"
|
||||
}
|
||||
else {
|
||||
Write-ToLog "Newer List downloaded/copied to local path: $($WAUConfig.InstallLocation.TrimEnd(" ", "\"))" "Yellow"
|
||||
}
|
||||
$Script:AlwaysDownloaded = $False
|
||||
}
|
||||
else {
|
||||
if ($WAUConfig.WAU_UseWhiteList -and (Test-Path "$WorkingDir\included_apps.txt")) {
|
||||
|
|
|
@ -54,15 +54,9 @@ function Test-ListPath ($ListPath, $UseWhiteList, $WingetUpdatePath) {
|
|||
}
|
||||
catch {
|
||||
try {
|
||||
$content = $wc.DownloadString("$ExternalList")
|
||||
if ($null -ne $content -and $content -match "\w\.\w") {
|
||||
$wc.DownloadFile($ExternalList, $LocalList)
|
||||
return $true
|
||||
}
|
||||
else {
|
||||
$Script:ReachNoPath = $True
|
||||
return $False
|
||||
}
|
||||
$wc.DownloadFile($ExternalList, $LocalList)
|
||||
$Script:AlwaysDownloaded = $True
|
||||
return $true
|
||||
}
|
||||
catch {
|
||||
$Script:ReachNoPath = $True
|
||||
|
@ -93,7 +87,7 @@ function Test-ListPath ($ListPath, $UseWhiteList, $WingetUpdatePath) {
|
|||
}
|
||||
else {
|
||||
$Script:ReachNoPath = $True
|
||||
return $False
|
||||
}
|
||||
return $False
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue