summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/canonical.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/canonical.py')
-rw-r--r--scripts/canonical.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/canonical.py b/scripts/canonical.py
index 7e6565f..35bfdcb 100644
--- a/scripts/canonical.py
+++ b/scripts/canonical.py
@@ -20,8 +20,14 @@ def packages(source: str) -> list[str]:
def snap_install_commands() -> list[list[str]]:
return [
- ["sudo", "snap", "install", name, "--channel=stable"]
- + (["--classic"] if name == "ghostty" else [])
+ [
+ "sudo",
+ "snap",
+ "install",
+ name,
+ "--channel=6/stable" if name == "lxd" else "--channel=stable",
+ ]
+ + (["--classic"] if name in {"ghostty", "workshop"} else [])
for name in packages("snap")
]