Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: fix install/update latest version picker (#554)
* cli: fix install/update latest version picker The `git ls-remote` command formats its output as follows: ``` fc0f34f refs/tags/v1.0.0+cli a1c11ef refs/tags/v1.0.1+cli ``` so when we sort it, it actually sorts the git hashes, and not the versions. So we rearrange the commands to first drop the commit hashes and then the sort (rather than doing it the other way around like before). * cli: update version This seems to have been mistakenly (?) version alongside the sdk releases.
- Loading branch information