You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a command to the CLI to output the latest version.
My specific use case: I want to deploy versions for multiple OSes simultaneously and then check PATCH is on the same version for each.
For now, a workaround is to use the "getVersions" command and pipe it to this python script:
import sys
import json
# parse the input stream as json
data = json.load(sys.stdin)
# sort the versions
data.sort()
# get the last element
latest_version = data[-1]
# print the latest version
print(latest_version)
The text was updated successfully, but these errors were encountered:
Add a command to the CLI to output the latest version.
My specific use case: I want to deploy versions for multiple OSes simultaneously and then check PATCH is on the same version for each.
For now, a workaround is to use the "getVersions" command and pipe it to this python script:
The text was updated successfully, but these errors were encountered: