File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ private function addFilesToZip(ZipArchive $zip): void
222
222
223
223
$ finder = (new Finder )->files ()
224
224
->followLinks ()
225
- ->ignoreVCSIgnored (true )
225
+ // ->ignoreVCSIgnored(true) // TODO: Make our own list of ignored files
226
226
->in ($ this ->buildPath ())
227
227
->exclude ([
228
228
// We add those a few lines below
@@ -240,9 +240,9 @@ private function addFilesToZip(ZipArchive $zip): void
240
240
$ this ->finderToZip ($ finder , $ zip );
241
241
242
242
// Add .env file manually because Finder ignores VSC ignored files
243
- $ zip ->addFile ($ this ->buildPath ('.env ' ), '.env ' );
244
- $ zip ->addFile ($ this ->buildPath ('bootstrap/cache/services.php ' ), 'bootstrap/cache/services.php ' );
245
- $ zip ->addFile ($ this ->buildPath ('bootstrap/cache/packages.php ' ), 'bootstrap/cache/packages.php ' );
243
+ // $zip->addFile($this->buildPath('.env'), '.env');
244
+ // $zip->addFile($this->buildPath('bootstrap/cache/services.php'), 'bootstrap/cache/services.php');
245
+ // $zip->addFile($this->buildPath('bootstrap/cache/packages.php'), 'bootstrap/cache/packages.php');
246
246
247
247
// Add auth.json file to support private packages
248
248
// WARNING: Only for testing purposes, don't uncomment this
You can’t perform that action at this time.
0 commit comments