Merge "Fix ExcludeFromVendorSnapshot check"
This commit is contained in:
commit
78f76b92e2
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue