You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running go mod tidy on the input source repository will result in dirtying the repo which is likely an undesirable effect that we should avoid doing. On the other hand, if we keep the flag and start running all operations on a temporary working copy of the repository the effect of the flag will be discarded with the working copy at the end of fetch-deps which may confuse our user base.
Running
go mod tidy
on the input source repository will result in dirtying the repo which is likely an undesirable effect that we should avoid doing. On the other hand, if we keep the flag and start running all operations on a temporary working copy of the repository the effect of the flag will be discarded with the working copy at the end offetch-deps
which may confuse our user base.The good thing is that we even documented (https://github.com/containerbuildsystem/cachi2/blob/main/docs/gomod.md#--force-gomod-tidy) the flag as questionable, warning users it may be dropped in the future. The time has come now that we should improve our game and mandate a temporary working copy of the input repository for all pkg mgr backends.
Blocks:
The text was updated successfully, but these errors were encountered: