Skip to content

Commit

Permalink
fix(onboarding): the installation command publishes the agent initial…
Browse files Browse the repository at this point in the history
…isation file (#83)
  • Loading branch information
matthv authored Feb 15, 2024
1 parent 87b7c74 commit 17fb6dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Commands/ForestInstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ public function handle(): void

$this->call('vendor:publish', [
'--provider' => ForestServiceProvider::class,
'--tag' => 'forest',
'--tag' => 'config',
]);

$this->call('vendor:publish', [
'--provider' => ForestServiceProvider::class,
'--tag' => 'forest',
]);
}

private function createNewKeysToEnvFile(string $envFileName): void
Expand Down

0 comments on commit 17fb6dd

Please sign in to comment.