Skip to content

Commit

Permalink
Fixed the deploy target being executed on feature branches
Browse files Browse the repository at this point in the history
Fixes #6251
  • Loading branch information
LaurentGoderre committed Nov 7, 2014
1 parent 008657b commit 4698ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.coffee
Expand Up @@ -55,7 +55,7 @@ module.exports = (grunt) ->
"deploy"
"Build and deploy artifacts to wet-boew-dist"
->
if process.env.TRAVIS_PULL_REQUEST isnt true and process.env.DIST_REPO isnt `undefined` and ( process.env.TRAVIS_TAG isnt `undefined` or process.env.TRAVIS_BRANCH is "master" )
if process.env.TRAVIS_PULL_REQUEST isnt true and process.env.DIST_REPO isnt `undefined` and ( process.env.TRAVIS_TAG isnt "" or process.env.TRAVIS_BRANCH is "master" )
grunt.task.run [
"copy:deploy"
"gh-pages:travis"
Expand Down

0 comments on commit 4698ab7

Please sign in to comment.