blob: ba5ebc1c5d264effd6ca192aa658ece30ea3b8e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- src/workflow/ArcanistVersionWorkflow.php.orig 2017-06-09 15:12:37 UTC
+++ src/workflow/ArcanistVersionWorkflow.php
@@ -27,6 +27,13 @@ EOTEXT
public function run() {
$console = PhutilConsole::getConsole();
+ $versions = array();
+ exec("pkg query '%n %v (%o)' php5-arcanist php5-libphutil", $versions);
+ foreach ($versions as $pkg) {
+ $console->writeOut($pkg."\n");
+ }
+ return;
+
if (!Filesystem::binaryExists('git')) {
throw new ArcanistUsageException(
pht(
|