We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37eca6a commit 613d955Copy full SHA for 613d955
1 file changed
src/Commands/BundleCommand.php
@@ -239,10 +239,8 @@ private function addFilesToZip(ZipArchive $zip): void
239
240
$this->finderToZip($finder, $zip);
241
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');
+ // Add .env file manually because Finder ignores VCS and dot files
+ $zip->addFile($this->buildPath('.env'), '.env');
246
247
// Add auth.json file to support private packages
248
// WARNING: Only for testing purposes, don't uncomment this
0 commit comments