Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
conditional error
  • Loading branch information
rynomster authored Sep 20, 2017
1 parent c3de6eb commit ab104ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ script:
- cd $TRAVIS_BUILD_DIR
- touch $OUTDIR/sha256sums.txt
- if [ -f $OUTDIR/particl-copay.win64.zip ]; then sha256sum $OUTDIR/particl-copay.win64.zip >>
$OUTDIR/sha256sums.txt;[ "$TRAVIS_TAG" = "" ] && travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.win64.zip https://transfer.sh/; fi
$OUTDIR/sha256sums.txt;if [ "$TRAVIS_TAG" = "" ];then travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.win64.zip https://transfer.sh/; fi;fi
- if [ -f $OUTDIR/particl-copay.linux64.zip ]; then sha256sum $OUTDIR/particl-copay.linux64.zip >>
$OUTDIR/sha256sums.txt;[ "$TRAVIS_TAG" = "" ] && travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.linux64.zip https://transfer.sh/; fi
$OUTDIR/sha256sums.txt;if [ "$TRAVIS_TAG" = "" ];then travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.linux64.zip https://transfer.sh/; fi;fi
- if [ -f $OUTDIR/particl-copay.osx64.zip ]; then sha256sum $OUTDIR/particl-copay.osx64.zip >>
$OUTDIR/sha256sums.txt;[ "$TRAVIS_TAG" = "" ] && travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.osx64.zip https://transfer.sh/; fi
$OUTDIR/sha256sums.txt;if [ "$TRAVIS_TAG" = "" ];then travis_retry curl --max-time 60 --upload
$OUTDIR/particl-copay.osx64.zip https://transfer.sh/; fi;fi
- cat $OUTDIR/sha256sums.txt
- npm run final:www && npm run build:android-release
- cp ~/build/particl/copay/platforms/android/build/outputs/apk/android-release-unsigned.apk
Expand Down

0 comments on commit ab104ed

Please sign in to comment.