ScoopInstaller / Versions

📦 A Scoop bucket for alternative versions of apps.
https://scoop.sh
The Unlicense
186 stars 192 forks source link

qview-nightly: Update to version 9929965521 #1823

Closed brian6932 closed 1 day ago

brian6932 commented 1 week ago

I'm not really sure why this manifest wasn't being updated by actions properly, as running checkver.ps1 had 0 issues.

github-actions[bot] commented 1 week ago

Your changes do not pass checks.

qview-nightly

aliesbelik commented 2 days ago

I'm not really sure why this manifest wasn't being updated by actions properly, as running checkver.ps1 had 0 issues.

Looks like it completes with Powershell 7.x but fails with 5.x (although Excavator action uses windows-latest (Windows 2022) runner image which should use 7.x as well):

qview-nightly: couldn't match '\A(\d+) (?\d{4}(?:-\d{2}){2}) (?\d+)\Z' in the output of script

Guess it could happen because of using ToString(...) to format extracted updated_at field value which may also be a String. Using Get-Date should fix this and works for both the versions:

Get-Date $api.updated_at -Format 'yyyy-MM-dd' or (Get-Date $api.updated_at).ToString('yyyy-MM-dd')

brian6932 commented 1 day ago

/verify

github-actions[bot] commented 1 day ago

All changes look good.

Wait for review from human collaborators.

qview-nightly