When I use the following command
mix deps.update --all
mix
will use locally cached packages if the version of a package has not been changed in the mix.ex
file. So the question is, how can I force mix
not to use the cached version and download it from the server instead? For example, if there were changes in the last version of some package and I want to pick those up, even if the version has not been bumped.