Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fetch: don't do a shallow clone (#134)
This fixes a test failure on current `main` where `packse fetch --ref 0.1.0` was failing. Namely, `packse fetch` does a shallow clone, which means not all tags are available. Since `0.2.0` has been tagged, the shallow clone only has the `0.2.0` tag available. It's not clear what the right fix is here. I assume it is non-ideal to have a deep clone here, but it's also not clear to me whether we want `packse fetch --ref 0.1.0` to always work. If so, then I think we probably need a deep clone? We can adjust this of course in the future, but I made this change to unblock CI.
- Loading branch information