aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/mbf/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mbf/cache.go')
-rw-r--r--cmd/mbf/cache.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/mbf/cache.go b/cmd/mbf/cache.go
index 71cef98b..20dbd855 100644
--- a/cmd/mbf/cache.go
+++ b/cmd/mbf/cache.go
@@ -28,6 +28,8 @@ type cache struct {
idle bool
// Unset [pkg.CSuppressInit].
verboseInit bool
+ // Unset [pkg.CExternShallow].
+ deep bool
// Loaded artifact of [rosa.QEMU].
qemu pkg.Artifact
@@ -57,6 +59,9 @@ func (cache *cache) open() (err error) {
if !cache.verboseInit {
flags |= pkg.CSuppressInit
}
+ if !cache.deep {
+ flags |= pkg.CExternShallow
+ }
done := make(chan struct{})
defer close(done)