Merge "Fix ExcludeFromVendorSnapshot check"

This commit is contained in:
Bill Peckham 2021-05-27 23:28:57 +00:00 committed by Gerrit Code Review
commit 78f76b92e2

View file

@ -20,12 +20,12 @@ import (
func (mod *Module) ExcludeFromVendorSnapshot() bool {
// TODO Rust does not yet support snapshotting
return true
return false
}
func (mod *Module) ExcludeFromRecoverySnapshot() bool {
// TODO Rust does not yet support snapshotting
return true
return false
}
func (mod *Module) IsSnapshotLibrary() bool {