summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-27 11:42:04 +0100
committerCarl Hetherington <cth@carlh.net>2025-11-27 11:42:04 +0100
commit7a62e4fb8a32ac4064ae366bef23ed7100c26e69 (patch)
treed1c0d3a74ebbb3ffcd962787bd20256b76203627
parent4ef7662ca390eacd62b85bdf1346fa0a446af543 (diff)
Don't build disk writer on the "old" appimage.
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 1831d2aa3..c29e04834 100644
--- a/cscript
+++ b/cscript
@@ -305,7 +305,7 @@ def can_build_disk(target):
return True
if target.distro == 'debian' and target.version != '9':
return True
- if target.detail == 'appimage':
+ if target.detail == 'appimage' and target.version != '14.04':
return True
if target.distro == 'fedora' and int(target.version) >= 31:
return True