File: Use-installed-script-for-CI.patch

package info (click to toggle)
php-league-commonmark 1.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,284 kB
  • sloc: php: 16,992; makefile: 24; ruby: 21; javascript: 15; sh: 9
file content (21 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: =?utf-8?q?David_Pr=C3=A9vot?= <david@tilapin.org>
Date: Fri, 15 Nov 2019 16:13:29 -1000
Subject: Use installed script for CI

---
 tests/functional/AbstractBinTest.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/functional/AbstractBinTest.php b/tests/functional/AbstractBinTest.php
index dc4745e..a655f7c 100644
--- a/tests/functional/AbstractBinTest.php
+++ b/tests/functional/AbstractBinTest.php
@@ -26,7 +26,7 @@ abstract class AbstractBinTest extends TestCase
      */
     protected function getPathToCommonmark()
     {
-        return realpath(__DIR__ . '/../../bin/commonmark');
+        return realpath('/usr/bin/commonmark');
     }
 
     /**