File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ install:
13
13
- php composer-setup.php
14
14
- php composer.phar install --no-interaction --prefer-source
15
15
- find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l
16
- - chmod +x src/ bin/rr && src/ bin/rr get-binary
16
+ - chmod +x bin/rr && bin/rr get-binary
17
17
18
18
script :
19
19
- go test -race -v -coverprofile=lib.txt -covermode=atomic
Original file line number Diff line number Diff line change 9
9
declare (strict_types=1 );
10
10
11
11
foreach ([
12
- __DIR__ . '/../../../../ autoload.php ' ,
13
- __DIR__ . '/../../ vendor/autoload.php ' ,
12
+ __DIR__ . '/../../../autoload.php ' ,
13
+ __DIR__ . '/../vendor/autoload.php ' ,
14
14
__DIR__ . '/vendor/autoload.php '
15
15
] as $ file ) {
16
16
if (file_exists ($ file )) {
@@ -62,7 +62,7 @@ class RRHelper
62
62
*/
63
63
public static function getVersion (): string
64
64
{
65
- $ file = __DIR__ . DIRECTORY_SEPARATOR . '.. ' . DIRECTORY_SEPARATOR . '.. ' . DIRECTORY_SEPARATOR . ' build.sh ' ;
65
+ $ file = __DIR__ . DIRECTORY_SEPARATOR . '.. ' . DIRECTORY_SEPARATOR . 'build.sh ' ;
66
66
$ fileResource = fopen ($ file , 'r ' ) or die (1 );
67
67
while (!feof ($ fileResource )) {
68
68
$ line = fgets ($ fileResource , 4096 );
Original file line number Diff line number Diff line change 27
27
}
28
28
},
29
29
"bin" : [
30
- " src/ bin/rr"
30
+ " bin/rr"
31
31
]
32
32
}
You can’t perform that action at this time.
0 commit comments