From f810313918c498c7e60930dd9bf10db94b8a0615 Mon Sep 17 00:00:00 2001 From: David Young Date: Mon, 23 Mar 2026 14:49:14 -0600 Subject: [PATCH] remove rpm --- patch-potacat.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/patch-potacat.sh b/patch-potacat.sh index e2c68b5..735f275 100755 --- a/patch-potacat.sh +++ b/patch-potacat.sh @@ -22,4 +22,12 @@ if 'deb' in targets: print('Removed deb target from $PACKAGE_JSON.') else: print('No deb target found, nothing to do.') +if 'rpm' in targets: + targets.remove('rpm') + data['build']['linux']['target'] = targets + with open('$PACKAGE_JSON', 'w') as f: + json.dump(data, f, indent=2) + print('Removed rpm target from $PACKAGE_JSON.') +else: + print('No rpm target found, nothing to do.') " \ No newline at end of file