Add "Cinnamon spices" step (#1055)

* Add "Cinnamon spices" step

* Format

* Move step to Linux
This commit is contained in:
Gideon
2025-03-04 01:57:12 +01:00
committed by GitHub
parent 488ae149f7
commit b40bffb1f2
3 changed files with 15 additions and 0 deletions

View File

@@ -251,6 +251,9 @@ fn run() -> Result<()> {
runner.execute(Step::Lure, "LURE", || linux::run_lure_update(&ctx))?;
runner.execute(Step::Waydroid, "Waydroid", || linux::run_waydroid(&ctx))?;
runner.execute(Step::AutoCpufreq, "auto-cpufreq", || linux::run_auto_cpufreq(&ctx))?;
runner.execute(Step::CinnamonSpices, "Cinnamon spices", || {
linux::run_cinnamon_spices_updater(&ctx)
})?;
}
#[cfg(target_os = "macos")]