Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Fixing now publishing of builds to download server (DONE)
Browse files Browse the repository at this point in the history
Change-Id: Ie9b2c77bfa04446d8e3e4b924990ec4039a3efe1
Signed-off-by: Jochen Hiller <j.hiller@telekom.de>
  • Loading branch information
Jochen Hiller committed Oct 24, 2015
1 parent f58e937 commit 28b27ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions distribution/publish/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ echo "PUBLISH_LOG=$PUBLISH_LOG"
now=`date -u '+%Y-%m-%d %H:%M:%S %Z'`
echo "$now: publishing last successful build for $version" >>$PUBLISH_LOG

echo -n "$BUILD_TYPE/" >>$PUBLISH_LOG
echo `(cd ./distribution/build/distributions/ ; ls *.zip)` >>$PUBLISH_LOG
cp ./distribution/build/distributions/*.zip $UPLOAD_LOCATION
echo -n "$BUILD_TYPE/" >>$PUBLISH_LOG
echo `(cd ./distribution/build/distributions/ ; ls *.tar.gz)` >>$PUBLISH_LOG
cp ./distribution/build/distributions/*.tar.gz $UPLOAD_LOCATION
echo -n "$BUILD_TYPE/" >>$PUBLISH_LOG
echo `(cd ./distribution/build/distributions/ ; ls *.zip)` >>$PUBLISH_LOG
cp ./distribution/build/distributions/*.zip $UPLOAD_LOCATION

0 comments on commit 28b27ce

Please sign in to comment.