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
Getting the https://api.github.com/repos/akiyosi/goneovim/releases/tags/nightly with jsonpath $.assets[?(@.name=='goneovim-windows.zip')].updated_at returns 8/21/2022 4:19:49 AM instead of 2022-08-21T04:19:49Z
$.assets[?(@.name=='goneovim-windows.zip')].updated_at
8/21/2022 4:19:49 AM
2022-08-21T04:19:49Z
jsonpath should return 2022-08-21T04:19:49Z without conversion
This is because the github action container runs in the en-US culture.
If you set InvariantCulture to CurrentCulture, it will not be converted, so it will be solved.
Windows version: 10
OS architecture: 64bit
PowerShell version: 7.2.6
{ "lastupdate": "2022-08-29T03:03:07.7136108+09:00", "SCOOP_REPO": "https://github.com/lukesampson/scoop", "SCOOP_BRANCH": "master" }
The text was updated successfully, but these errors were encountered:
Hi! Can you make a PR for the fix?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug Report
Current Behavior
Getting the https://api.github.com/repos/akiyosi/goneovim/releases/tags/nightly with jsonpath
$.assets[?(@.name=='goneovim-windows.zip')].updated_at
returns8/21/2022 4:19:49 AM
instead of2022-08-21T04:19:49Z
Expected Behavior
jsonpath should return
2022-08-21T04:19:49Z
without conversionAdditional context/output
This is because the github action container runs in the en-US culture.
Possible Solution
If you set InvariantCulture to CurrentCulture, it will not be converted, so it will be solved.
System details
Windows version: 10
OS architecture: 64bit
PowerShell version: 7.2.6
Scoop Configuration
The text was updated successfully, but these errors were encountered: