From 9e7b9d806b752ae3f1a37a916a49eec220f453a8 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 23 Feb 2017 15:06:38 +0000 Subject: [PATCH] Had an issue with $f not being subbed for the actual filename in the curl command --- travis/upload-failure-screenshots.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/upload-failure-screenshots.sh b/travis/upload-failure-screenshots.sh index 9e833ac8..eed952c2 100755 --- a/travis/upload-failure-screenshots.sh +++ b/travis/upload-failure-screenshots.sh @@ -2,5 +2,5 @@ for f in tests/Browser/screenshots/*.png do - curl -F 'upload=@$f' -F 'format=txt' http://uploads.im/api + curl -F "upload=@$f" -F "format=txt" http://uploads.im/api done