From 30fae57d2ea83ab2c49db9af048855e341e0cc58 Mon Sep 17 00:00:00 2001 From: Aditya Garg <85610623+AdityaGarg8@users.noreply.github.com> Date: Sun, 20 Oct 2024 13:39:11 +0530 Subject: [PATCH] Fix split Kubuntu LTS --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 445923c..a19cc40 100755 --- a/build.sh +++ b/build.sh @@ -85,7 +85,7 @@ do fi ## Split iso into multiple parts - github max size of release attachment is 2GB, where ISO is sometimes bigger than that cd "${ROOT_PATH}" - split -b 1500M -x "${ROOT_PATH}/kubuntu-24.04-${KERNEL_VERSION}-${ALTERNATIVE}.iso" "${ROOT_PATH}/output/kubuntu-24.04-${KERNEL_VERSION}-${ALTERNATIVE}.iso." + split -b 2000M -x "${ROOT_PATH}/kubuntu-24.04-${KERNEL_VERSION}-${ALTERNATIVE}.iso" "${ROOT_PATH}/output/kubuntu-24.04-${KERNEL_VERSION}-${ALTERNATIVE}.iso." done ## Calculate sha256 sums of built ISO sha256sum "${ROOT_PATH}"/*.iso >"${ROOT_PATH}/output/sha256-kubuntu-24.04"