Skip to content

Commit 30d98ea

Browse files
committed
Fix default stability
1 parent 93d76e0 commit 30d98ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Package/PHP/Convey/Command/Pecl.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ protected function prepare()
9191
$this->version = 'latest';
9292
$this->prettyVersion = 'latest-' . $this->stability;
9393
}
94+
95+
if ($this->version === 'latest' && $this->stability === 'stable') {
96+
$this->url .= '-stable';
97+
}
9498
}
9599

96100
protected function fetch($target)

0 commit comments

Comments
 (0)