Skip to content
This repository has been archived by the owner on Jan 28, 2025. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
limenet committed Mar 10, 2017
1 parent 3d4ffd2 commit 39afdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/limenet/Deploy/Strategies/TravisStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function isBranch(string $branch) : bool

public function isTag() : bool
{
return array_key_exists('tag', $this->payload);
return array_key_exists('tag', $this->payload) && $this->payload['tag'];
}

public function getCommitHash() : string
Expand Down

0 comments on commit 39afdb0

Please sign in to comment.