In Laravel 4 the default configuration environment is \'production\'. This means that if you run an artisan command without the --env option, it assumes the product
--env
You can try modifying app/start.php file to add second parameter on desired environment as TRUE i.e. to enable local environment it looks like
$env = $app->detectEnvironment(array( 'local' => array('homestead',true), ));