Give Propel's SqlInsertCommand the right value for the sql-dir parameter

This commit is contained in:
Kévin Gomez 2014-04-19 04:54:43 +01:00
parent 37c037f0ec
commit 4b5da9363e

View file

@ -44,7 +44,8 @@ class SqlInsertCommand extends WrappedCommand
protected function getSubCommandArguments(InputInterface $input)
{
return array(
'--connection' => $this->getConnections($input->getOption('connection')),
'--connection' => $this->getConnections($input->getOption('connection')),
'--sql-dir' => $this->cacheDir,
);
}
}