From 4b5da9363ee86f7378ec622d4cbb59e8fac93236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Gomez?= Date: Sat, 19 Apr 2014 04:54:43 +0100 Subject: [PATCH] Give Propel's SqlInsertCommand the right value for the sql-dir parameter --- Command/SqlInsertCommand.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Command/SqlInsertCommand.php b/Command/SqlInsertCommand.php index 2a5abe7..844f795 100644 --- a/Command/SqlInsertCommand.php +++ b/Command/SqlInsertCommand.php @@ -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, ); } }