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
If use $version in autoupdate.installer.script, checkver will substitute it with specific version number.
$version
autoupdate.installer.script
checkver
Example:
{ "version": "2.6.0", "description": "Deploy Shiny apps in an enterprise context", "homepage": "https://www.shinyproxy.io", "license": "Apache-2.0", "suggest": { "JDK": "java/openjdk" }, "url": "https://www.shinyproxy.io/downloads/shinyproxy-2.6.0.jar", "hash": "33e79a030294dc4dcb61c3030a53d239a964d6aa1122143d854a329c5c7a233b", "bin": [ [ "shinyproxy-2.6.0.jar", "shinyproxy" ] ], "installer": { "script": "2.6.0" }, "checkver": { "url": "https://www.shinyproxy.io/downloads/", "regex": "li>.*>([\\d.]+)</a>" }, "autoupdate": { "url": "https://www.shinyproxy.io/downloads/shinyproxy-$version.jar", "hash": { "url": "$url.sha256" }, "bin": [ [ "shinyproxy-$version.jar", "shinyproxy" ] ], "installer": { "script": "$version" } } }
Latest $version will become 2.6.0 after checkver's update.
2.6.0
bin\autoupdate.ps1 should be checked again. Strangely, other properties are being updated correctly.
bin\autoupdate.ps1
The text was updated successfully, but these errors were encountered:
PSCustomObject
autoupdate
niheaven
Successfully merging a pull request may close this issue.
Bug Report
Current Behavior
If use
$version
inautoupdate.installer.script
,checkver
will substitute it with specific version number.Example:
shinyproxy.json
Latest
$version
will become2.6.0
after checkver's update.Possible Solution
bin\autoupdate.ps1
should be checked again. Strangely, other properties are being updated correctly.The text was updated successfully, but these errors were encountered: