From fee5e4ce694dce38a07d5f13f6c57d87e557c377 Mon Sep 17 00:00:00 2001 From: PhlexPlexico Date: Tue, 4 Jun 2024 17:05:16 -0600 Subject: [PATCH] Update Build Process (#98) The `cut` call was not correctly aligned with the repo, so it was not giving proper hashes for the versions. --- .github/workflows/create-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-build.yml b/.github/workflows/create-build.yml index 170d6cb..8878f3a 100644 --- a/.github/workflows/create-build.yml +++ b/.github/workflows/create-build.yml @@ -429,7 +429,7 @@ jobs: LINE=`sed -e 's/^"//' -e 's/"$//' <<<"$LINE"` ARRLINE=($(echo $LINE | tr " " "\n")) sed -i "s##${ARRLINE[0]}#g" MM3DR.unistore - VERSION=$(echo ${ARRLINE[0]} | cut -c75-80) + VERSION=$(echo ${ARRLINE[0]} | cut -c67-72) MODIFIED=$(echo ${ARRLINE[1]} | cut -c1-10) MODIFIED_DATE=$(echo ${ARRLINE[1]} | cut -c12-19) sed -i "s##$VERSION#g" MM3DR.unistore