Skip to content

Commit

Permalink
fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
Gravitano committed Jan 11, 2016
1 parent 002f20e commit 6c2f018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/SeedCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function fire()
$name = $this->argument('module');

if ($name) {
if (!$this->module->has($name)) {
if (!$this->module->has(Str::studly($name))) {
return $this->error("Module [$name] does not exists.");
}

Expand Down

0 comments on commit 6c2f018

Please sign in to comment.