From 1943f7ce0cf11b9be7341e3eaf17b26871eb05f3 Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Wed, 28 Jun 2017 17:52:39 +0200 Subject: [PATCH] Trying all the solutions I found --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9a1e8d9..fb3af76 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,13 +14,13 @@ sudo: true deploy: # deploy develop to the staging environment - provider: script - script: ./deploy.sh staging + script: chmod +x deploy.sh && sh deploy.sh staging on: branch: dev skip_cleanup: true # deploy master to production - provider: script - script: ./deploy.sh production + script: chmod +x deploy.sh && sh deploy.sh production on: branch: master skip_cleanup: true