Skip to content

Commit 37eca6a

Browse files
committed
wip: try with everything first
1 parent b9c6ccf commit 37eca6a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Commands/BundleCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ private function addFilesToZip(ZipArchive $zip): void
222222

223223
$finder = (new Finder)->files()
224224
->followLinks()
225-
->ignoreVCSIgnored(true)
225+
// ->ignoreVCSIgnored(true) // TODO: Make our own list of ignored files
226226
->in($this->buildPath())
227227
->exclude([
228228
// We add those a few lines below
@@ -240,9 +240,9 @@ private function addFilesToZip(ZipArchive $zip): void
240240
$this->finderToZip($finder, $zip);
241241

242242
// 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');
246246

247247
// Add auth.json file to support private packages
248248
// WARNING: Only for testing purposes, don't uncomment this

0 commit comments

Comments
 (0)