diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-10-16 19:23:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-16 19:23:03 +0200 |
commit | d34c7e89a0dd609d9b4ad91e2073279aa2c08a82 (patch) | |
tree | 94e2f02c7380264b2a46414033f611f4ae1dfce2 | |
parent | c25be8d83cb25fa25cea28bc5eae307308292aa3 (diff) | |
parent | 17bd2fb268147f7285bd9ec68bef659687407d89 (diff) | |
download | nextcloud-server-d34c7e89a0dd609d9b4ad91e2073279aa2c08a82.tar.gz nextcloud-server-d34c7e89a0dd609d9b4ad91e2073279aa2c08a82.zip |
Merge pull request #6844 from nextcloud/phan-repo
Phan is moved to a new repo
-rw-r--r-- | .drone.yml | 4 | ||||
-rw-r--r-- | build/.phan/plugin-checker.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index 3e161e42889..2f2867a5b2b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -49,8 +49,8 @@ pipeline: image: nextcloudci/php7.1:php7.1-15 commands: - composer install - - composer require --dev "etsy/phan:dev-master" - - ./lib/composer/etsy/phan/phan -k build/.phan/config.php + - composer require --dev "phan/phan:dev-master" + - ./lib/composer/phan/phan/phan -k build/.phan/config.php - php ./build/.phan/plugin-checker.php when: matrix: diff --git a/build/.phan/plugin-checker.php b/build/.phan/plugin-checker.php index 681904264f6..92eb3496ed5 100644 --- a/build/.phan/plugin-checker.php +++ b/build/.phan/plugin-checker.php @@ -34,7 +34,7 @@ build/.phan/tests/SqlInjectionCheckerTest.php:70 SqlInjectionChecker Potential S EOT; -$result = shell_exec('php '. __DIR__ . '/../../lib/composer/etsy/phan/phan -k build/.phan/config.php --include-analysis-file-list build/.phan/tests/* --directory build/.phan/tests/'); +$result = shell_exec('php '. __DIR__ . '/../../lib/composer/phan/phan/phan -k build/.phan/config.php --include-analysis-file-list build/.phan/tests/* --directory build/.phan/tests/'); if($result !== $expected) { echo("Output of phan doesn't match expectation\n"); |