From 78e7362392c022f3dc0dfeded7aa6b98e0d01ef1 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sun, 15 Mar 2015 22:39:16 +0100 Subject: [PATCH] Changing circle script to respect changes of the package renaming. --- circle.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index 815a48d..4a8d7be 100644 --- a/circle.yml +++ b/circle.yml @@ -21,12 +21,12 @@ test: override: - docker run -v ~/Saxum:/saxum/saxum -w=/saxum/saxum -u=$(id -u) faerbit/saxum ./package.sh linux - docker run -v ~/Saxum:/saxum/saxum -w=/saxum/saxum -u=$(id -u) faerbit/saxum ./package.sh windows - - if [ -f MarbleGame_Windows.zip ]; then cp MarbleGame_Windows.zip $CIRCLE_ARTIFACTS; fi - - if [ -f MarbleGame_Linux.zip ]; then cp MarbleGame_Linux.zip $CIRCLE_ARTIFACTS; fi + - if [ -f Saxum_Windows.zip ]; then cp Saxum_Windows.zip $CIRCLE_ARTIFACTS; fi + - if [ -f Saxum_Linux.zip ]; then cp Saxum_Linux.zip $CIRCLE_ARTIFACTS; fi deployment: master: branch: master commands: - - if [ -f MarbleGame_Windows.zip ]; then ./dropbox_uploader.sh -p upload MarbleGame_Windows.zip /; fi - - if [ -f MarbleGame_Linux.zip ]; then ./dropbox_uploader.sh -p upload MarbleGame_Linux.zip /; fi + - if [ -f Saxum_Windows.zip ]; then ./dropbox_uploader.sh -p upload Saxum_Windows.zip /; fi + - if [ -f Saxum_Linux.zip ]; then ./dropbox_uploader.sh -p upload Saxum_Linux.zip /; fi