Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

Commit

Permalink
Fix minor bug in calling versionparser method
Browse files Browse the repository at this point in the history
  • Loading branch information
padraic committed May 29, 2015
1 parent 5dbb678 commit 843cc2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Strategy/GithubStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function getCurrentRemoteVersion(Updater $updater)
} elseif ($this->getStability() === self::UNSTABLE) {
$this->remoteVersion = $versionParser->getMostRecentUnstable();
} else {
$this->remoteVersion = $versionParser->getMostRecentAny();
$this->remoteVersion = $versionParser->getMostRecentAll();
}

/**
Expand Down

0 comments on commit 843cc2b

Please sign in to comment.