From af1e2c1cb89a037b85083a2796de53b99d797414 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 31 May 2026 11:17:22 +1000 Subject: [PATCH] Change flutter command to use FVM (#831) Fixes broken build step --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 7049aa4e..e06d1410 100644 --- a/tasks.py +++ b/tasks.py @@ -18,7 +18,7 @@ def clean(c): @task def update(c): """Update flutter dependencies.""" - c.run("flutter pub get") + c.run("fvm flutter pub get") @task def translate(c):