aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/mbf
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mbf')
-rw-r--r--cmd/mbf/main.go2
-rw-r--r--cmd/mbf/main_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go
index 030d9325..65d563be 100644
--- a/cmd/mbf/main.go
+++ b/cmd/mbf/main.go
@@ -93,7 +93,7 @@ func main() {
if !flagLTO {
flags |= rosa.OptLLVMNoLTO
}
- rosa.DropCaches(flags)
+ rosa.DropCaches("", flags)
return nil
}).Flag(
diff --git a/cmd/mbf/main_test.go b/cmd/mbf/main_test.go
index 8f0d0894..a5b33e90 100644
--- a/cmd/mbf/main_test.go
+++ b/cmd/mbf/main_test.go
@@ -9,7 +9,7 @@ import (
)
func TestMain(m *testing.M) {
- rosa.DropCaches(rosa.OptLLVMNoLTO)
+ rosa.DropCaches("", rosa.OptLLVMNoLTO)
os.Exit(m.Run())
}