Merge "Fix ExcludeFromVendorSnapshot check"

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

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 {