Skip to content

Commit a9b4b59

Browse files
committed
Merge branch 'mrrobot47-add/specific-json-files' into develop-v4
2 parents 856a0e1 + 73fc60d commit a9b4b59

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

utils/make-phar.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,16 @@ function get_composer_versions( $current_version ) {
249249
add_file( $phar, $file );
250250
}
251251

252+
$finder
253+
->files()
254+
->ignoreDotFiles(false)
255+
->in(EE_VENDOR_DIR . '/easyengine/*-command/')
256+
->name('ee-*.json');
257+
258+
foreach ( $finder as $file ) {
259+
add_file( $phar, $file );
260+
}
261+
252262
// other files
253263
$finder = new Finder();
254264
$finder->files()

0 commit comments

Comments
 (0)