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
https://github.com/lukesampson/scoop/blob/bc927a53f96137b501c154937b9dc2819a34eb67/bin/checkver.ps1#L34-L39
Get-ChildItem "." "*.json" | ForEach-Object { echo "$_" } returns filenames on older pwsh, but on Powershell 6.1.0 full path is returned:
Get-ChildItem "." "*.json" | ForEach-Object { echo "$_" }
Linux:
PS /home/user/scoop-extras> Get-ChildItem "." "*.json" | ForEach-Object { echo "$_" } /home/user/scoop-extras/advancedrenamer.json /home/user/scoop-extras/aida64extreme.json [...]
Windows:
PS C:\Users\user\scoop-extras> Get-ChildItem "." "*.json" | ForEach-Object { echo "$_" } C:\Users\user\scoop-extras\advancedrenamer.json C:\Users\user\scoop-extras\aida64extreme.json [...]
Because of this manifest loading fails, and no updates are detected.
The text was updated successfully, but these errors were encountered:
checkver.ps1
checkver: Resolve issue on Powershell >6.1.0 (#2592)
2a2c205
* Fixes #2591
No branches or pull requests
https://github.com/lukesampson/scoop/blob/bc927a53f96137b501c154937b9dc2819a34eb67/bin/checkver.ps1#L34-L39
Get-ChildItem "." "*.json" | ForEach-Object { echo "$_" }
returns filenames on older pwsh, but on Powershell 6.1.0 full path is returned:Linux:
Windows:
Because of this manifest loading fails, and no updates are detected.
The text was updated successfully, but these errors were encountered: