Skip to content

Commit

Permalink
Oops, condition needs to be reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
kilrizzy committed Jul 19, 2017
1 parent a8a3a40 commit 066621c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Support/Traits/RequireEnvFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
trait RequireEnvFile{

private function hasDotEnvFile(){
if($this->config->hasDotEnvFile()){
if(!$this->config->hasDotEnvFile()){
$this->outputInterface->writeln('<error>('.$this->config->dotEnvFilePath().') Not found. Run "homeboy setup"</error>');
die();
}
Expand Down

0 comments on commit 066621c

Please sign in to comment.