diff options
| -rw-r--r-- | package.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -207,6 +207,9 @@ func (pkg *Package) IsEqual(other *Package) bool { if pkg.RemoteURL != other.RemoteURL { return false } + if pkg.RemoteBranch != other.RemoteBranch { + return false + } if pkg.Version != other.Version { return false } |
