In my stack.yaml file, I want to add a dependency to a package located on my computer.
I can do it like this:
- location : ../Bwroga
extra-dep: true
Is it possible to also specify a commit? I know I can do this if the package is hosted on github or bitbucket, but I want to keep the dependency on my computer.
I tried:
- location :
git: ../Bwroga
commit: 039bd43313803a88c990af3ddcd6d75419ab44a1
extra-dep: true
- location :
git: ../Bwroga/bwroga.git
commit: 039bd43313803a88c990af3ddcd6d75419ab44a1
extra-dep: true
but got errors stating that the repository does not exist.
I also tried:
- location: ../Bwroga
commit: 039bd43313803a88c990af3ddcd6d75419ab44a1
extra-dep: true
It compiled, but said that the commit field was unrecognized.