From 37ae3cc8cb640f3de2e2fd7237b1988a1da7d6a5 Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Wed, 2 Aug 2017 13:45:44 -0400 Subject: [PATCH] correction to execCommands --- core/src/main/scala/Commands.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/scala/Commands.scala b/core/src/main/scala/Commands.scala index b82842c..5544028 100644 --- a/core/src/main/scala/Commands.scala +++ b/core/src/main/scala/Commands.scala @@ -181,7 +181,7 @@ trait MigrationCommandLineTool[T, S] { this: MigrationCommands[T, S] => case "apply" :: Nil => applyCommand case "init" :: Nil => initCommand case "reset" :: Nil => resetCommand - case "update" :: (options: Seq[String]) => updateCommand + case "update" :: (options: Seq[String]) => updateCommand(options) case "migrate" :: (options: Seq[String]) => migrateCommand(options) case _ => println(helpOutput)