This repository was archived by the owner on Feb 24, 2020. It is now read-only.

Description
I think since the refacto of fetch there is no way of getting latest version of an aci without re-downloading it again
- I have a version 1 in the local store as the latest
- There is a remote version 2
when I run :
fetch example.com/aci will tell me that the latest is V1 (not ok)
fetch example:com/aci:latest will download the V2 (ok). Running it again will re-download the aci (not ok)
fetch --store-only example.com/aci will tell me that the latest is V1
fetch --store-only example.com/aci:latest will fail
fetch --no-store example.com/aci will download the V2 (and all dependencies). Running it again will re-download all the aci (not ok)