Merge pull request #275 from fbelavenuto/first-beta

First beta release, with new update system
This commit is contained in:
Fabio Belavenuto 2022-10-26 14:01:06 -03:00 committed by GitHub
commit c99b545226
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
0.5-alpha2 1.0-beta

View File

@ -1,5 +1,5 @@
ARPL_VERSION="0.5-alpha2" ARPL_VERSION="1.0-beta"
# Define paths # Define paths
TMP_PATH="/tmp" TMP_PATH="/tmp"

View File

@ -91,5 +91,5 @@ sha256sum update-list.yml > sha256sum
yq '.replace | explode(.) | to_entries | map([.key])[] | .[]' update-list.yml | while read F; do yq '.replace | explode(.) | to_entries | map([.key])[] | .[]' update-list.yml | while read F; do
(cd `dirname ${F}` && sha256sum `basename ${F}`) >> sha256sum (cd `dirname ${F}` && sha256sum `basename ${F}`) >> sha256sum
done done
yq '.replace | explode(.) | to_entries | map([.key])[] | .[]' update-list.yml | xargs zip -9j "update-${VERSION}.zip" sha256sum update-list.yml yq '.replace | explode(.) | to_entries | map([.key])[] | .[]' update-list.yml | xargs zip -9j "update.zip" sha256sum update-list.yml
rm -f sha256sum rm -f sha256sum