Skip to content

Commit

Permalink
Merge pull request #1994 from estebanlm/22659-generated-artifacts-sho…
Browse files Browse the repository at this point in the history
…uld-have-the-version-tag

22659-generated-artifacts-should-have-the-version-tag (postscriptum to the notes to the commentaries to the addendum)
  • Loading branch information
estebanlm committed Nov 14, 2018
2 parents 3eb720a + ffdb829 commit d66c4bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bootstrap/scripts/4-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ set -x
set -e

SCRIPTS="$(cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P)"

. ${SCRIPTS}/envvars.sh

# A POSIX variable
Expand Down Expand Up @@ -226,4 +225,5 @@ echo "70" > pharo.version
# clean bak sources files
rm -f *.bak

zip "${PHARO_IMAGE_NAME}.zip" ${PHARO_IMAGE_NAME}.* pharo.version
PHARO_SOURCES_PREFIX=$(echo "${PHARO_NAME_PREFIX}" | cut -d'.' -f 1-2)
zip "${PHARO_IMAGE_NAME}.zip" ${PHARO_IMAGE_NAME}.* ${PHARO_SOURCES_PREFIX}*.sources pharo.version
3 changes: 2 additions & 1 deletion bootstrap/scripts/transform_32_into_64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ for f in ${PHARO_NAME_PREFIX}-32bit-*.zip; do
dd if="displaySize.bin" of="${PHARO_NAME_PREFIX}-64bit-$HASH.image" bs=1 seek=40 count=4 conv=notrunc

echo "70" > pharo.version
zip ${PHARO_NAME_PREFIX}-64bit-$HASH.zip ${PHARO_NAME_PREFIX}-64bit-$HASH.* ${IMAGENAME}.sources pharo.version
PHARO_SOURCES_PREFIX=$(echo "${PHARO_NAME_PREFIX}" | cut -d'.' -f 1-2)
zip ${PHARO_NAME_PREFIX}-64bit-$HASH.zip ${PHARO_NAME_PREFIX}-64bit-$HASH.* ${PHARO_SOURCES_PREFIX}*.sources pharo.version
rm -f *.image *.changes *.sources
done

Expand Down

0 comments on commit d66c4bc

Please sign in to comment.