File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ private function checkComposerJson(): bool
178
178
// // }
179
179
// }
180
180
181
- // Remove repositories with type path
181
+ // Remove repositories with type path, we include symlinked packages
182
182
if (! empty ($ composerJson ['repositories ' ])) {
183
183
184
184
$ this ->newLine ();
@@ -192,10 +192,10 @@ private function checkComposerJson(): bool
192
192
file_put_contents ($ this ->buildPath ('composer.json ' ),
193
193
json_encode ($ composerJson , JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES ));
194
194
195
- Process::path ($ this ->buildPath ())
196
- ->run ('composer update --no-dev ' , function (string $ type , string $ output ) {
197
- echo $ output ;
198
- });
195
+ // Process::path($this->buildPath())
196
+ // ->run('composer install --no-dev', function (string $type, string $output) {
197
+ // echo $output;
198
+ // });
199
199
}
200
200
201
201
}
@@ -221,7 +221,7 @@ private function addFilesToZip(ZipArchive $zip): void
221
221
intro ('Creating zip archive… ' );
222
222
223
223
$ finder = (new Finder )->files ()
224
- // ->followLinks()
224
+ ->followLinks ()
225
225
// ->ignoreVCSIgnored(true) // TODO: Make our own list of ignored files
226
226
->in ($ this ->buildPath ())
227
227
->exclude ([
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public function handle(): int
50
50
$ appName = $ this ->setAppName ($ developmentMode );
51
51
52
52
// Eh, just in case, I don't want to delete all user data by accident.
53
- if ( ! empty ($ appName )) {
53
+ if (! empty ($ appName )) {
54
54
$ appDataPath = $ this ->appDataDirectory (
4219
$ appName );
55
55
$ this ->line ('Clearing: ' .$ appDataPath );
56
56
You can’t perform that action at this time.
0 commit comments