From 84d52fbaf2a734b34f47382a763b66faa5c74f9f Mon Sep 17 00:00:00 2001 From: Faerbit Date: Thu, 12 Feb 2015 01:38:18 +0100 Subject: [PATCH] Another syntax fix. --- circle.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/circle.yml b/circle.yml index a62f03a..24f89dd 100644 --- a/circle.yml +++ b/circle.yml @@ -21,12 +21,12 @@ test: override: - docker run -v ~/swp:/swp/swp -w=/swp/swp -u=$(id -u) faerbit/swp ./package.sh linux - docker run -v ~/swp:/swp/swp -w=/swp/swp -u=$(id -u) faerbit/swp ./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 MarbleGame_Windows.zip ]; then cp MarbleGame_Windows.zip $CIRCLE_ARTIFACTS; fi + - if [ -f MarbleGame_Linux.zip ]; then cp MarbleGame_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 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