We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 31a9cfc + fdfd549 commit ee36cf0Copy full SHA for ee36cf0
src/Adapter/Filesystem/SatelliteBuilder.php
@@ -114,6 +114,10 @@ public function build(): Configurator\SatelliteInterface
114
}
115
116
117
+ if (!file_exists($this->workdir.'/.env') && file_exists(getcwd().'/.env')) {
118
+ symlink(getcwd().'/.env', $this->workdir.'/.env');
119
+ }
120
+
121
$composer = new Satellite\Adapter\Composer($this->workdir);
122
$satellite = new Satellite\Adapter\Filesystem\Satellite(
123
$this->workdir,
0 commit comments