From bb6db27f7cceac39364ee6d5df09175ad8396801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=A4rkl?= Date: Thu, 17 Oct 2019 07:52:45 +0200 Subject: [PATCH] Add a timeout to the transfer.sh upload --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1349f2d..a6d12fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -134,7 +134,7 @@ matrix: - tar -czvf "$DEPLOY_FILE" chiaki after_success: - - if [ ! -z "$DEPLOY_FILE" ]; then curl --upload-file "$DEPLOY_FILE" "https://transfer.sh/$DEPLOY_FILE"; echo; fi + - if [ ! -z "$DEPLOY_FILE" ]; then curl -m 300 --upload-file "$DEPLOY_FILE" "https://transfer.sh/$DEPLOY_FILE"; echo; fi deploy: skip_cleanup: true