z-Fng
z-Fng
This appears to be a bug in Scoop-Core: - https://github.com/ScoopInstaller/Scoop/issues/6425
/verify. Rebased master and simplified the commit.
I think it would be beneficial to include more manifest details like `shortcuts`, `checkver`, and `autoupdate` for better functionality.
As discussed in https://github.com/ScoopInstaller/Extras/pull/16542#discussion_r2500699781, I'd advise against adding any operations in package manifest that modify files outside the Scoop root directory. My concerns are mainly as follows: 1. For global...
There have indeed been cases in the past where PRs performed operations outside the Scoop root directory, which could have been caused by various reasons. For packages that don't fully...
I think most uses of `-ErrorAction SilentlyContinue` in Scoop-Core should be replaced with `-ErrorAction Ignore`. We don't really need most of these error messages recorded in `$Error`. The same applies...
> Merging this might break some manifests that have workarounds to delete leftovers after $ExtractDir. Here are some I know of: > - https://github.com/ScoopInstaller/Extras/blob/master/bucket/foxit-reader.json > - https://github.com/ScoopInstaller/Extras/blob/master/bucket/foxit-pdf-reader.json This isn't specifically...
> I also think this will not work, as $variable inside single quote ' will not get the value of the variable. Yes, a simple test can tell that this...
Double quotes don’t work here either. All existing double quotes will be removed in Invoke-ExternalCommand. https://github.com/ScoopInstaller/Scoop/blob/b588a06e41d920d2123ec70aee682bae14935939/lib/core.ps1#L708-L714