Open
Description
In my current project I have a dependence that points to a git repo.
[dependencies]
myproject= { git = "http://192.168.0.1/thing/thing.git", branch = "master" }
I was wondering if we can add a flag to always pull on build.
something similar to the following.
[dependencies]
myproject= { git = "http://192.168.0.1/thing/thing.git", branch = "master", pull_on_build = true }