Skip to content

Commit

Permalink
Default admin credentials seeding fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sleeping-owl committed Oct 16, 2014
1 parent a9f537b commit 341f30a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ public function run()
'name' => 'SleepingOwl Administrator'
];

Administrator::create($default);
try
{
Administrator::create($default);
} catch (\Exception $e)
{
}
}

}

0 comments on commit 341f30a

Please sign in to comment.