Skip to content

Commit

Permalink
Update Build Process (#98)
Browse files Browse the repository at this point in the history
The `cut` call was not correctly aligned with the repo, so it was not giving proper hashes for the versions.
  • Loading branch information
PhlexPlexico authored Jun 4, 2024
1 parent 7075741 commit fee5e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ jobs:
LINE=`sed -e 's/^"//' -e 's/"$//' <<<"$LINE"`
ARRLINE=($(echo $LINE | tr " " "\n"))
sed -i "s#<NIGHTLY_${LINENUM}_URL_CIA>#${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#<NIGHTLY_$LINENUM>#$VERSION#g" MM3DR.unistore
Expand Down

0 comments on commit fee5e4c

Please sign in to comment.