We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe I'm misunderstanding, but I'd assume that these two would do the same thing, but it doesn't appear that they are?
scoop cleanup --all --cache calls Remove-Item "$cachedir\$app#*" -Exclude "$app#$current_version#*" and Remove-Item "$cachedir\*.download" -ErrorAction Ignore
Remove-Item "$cachedir\$app#*" -Exclude "$app#$current_version#*"
Remove-Item "$cachedir\*.download" -ErrorAction Ignore
scoop cache rm --all calls cacheremove $Args
cacheremove $Args
should scoop cleanup --all --cache call cacheremove as well, or do these do two different things?
scoop cleanup --all --cache
cacheremove
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe I'm misunderstanding, but I'd assume that these two would do the same thing, but it doesn't appear that they are?
scoop cleanup --all --cache calls
Remove-Item "$cachedir\$app#*" -Exclude "$app#$current_version#*"
andRemove-Item "$cachedir\*.download" -ErrorAction Ignore
scoop cache rm --all calls
cacheremove $Args
should
scoop cleanup --all --cache
callcacheremove
as well, or do these do two different things?The text was updated successfully, but these errors were encountered: