17 lines
524 B
PowerShell
17 lines
524 B
PowerShell
param([switch]$Force)
|
|
|
|
if( -not $global:ThisSeszion -or $Force ) {
|
|
$global:MyModulesWarning = @()
|
|
}
|
|
|
|
|
|
scoop autocomplete-on
|
|
|
|
if( Test-Path (Join-Path $env:SCOOP last-scoop-refresh.clixml) ) {
|
|
if($Host.Name -ne 'Visual Studio Code Host' ) {
|
|
scoop refresh
|
|
}
|
|
} else {
|
|
Write-Warning ("No recorded time for last 'scoop refresh', to remedy, run 'scoop refresh' at least once manually." +
|
|
"`nIf the issue still persists, please run 'scoop alias-update' to update to latest refresh code, and try again.")
|
|
} |