Skip to content

Commit

Permalink
Fixes failing CLI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rdagumampan committed Feb 10, 2020
1 parent 2aec0ba commit cf424cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions yuniql-cli/CommandLineService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,10 @@ public object RunVerify(VerifyOption opts)
//parse tokens
var tokens = opts.Tokens.Select(t => new KeyValuePair<string, string>(t.Split("=")[0], t.Split("=")[1])).ToList();

//run the migration
var toolName = "yuniql-cli";
var toolVersion = this.GetType().Assembly.GetName().Version.ToString();

//run the migration
var migrationService = _migrationServiceFactory.Create(opts.Platform);
migrationService.Initialize(opts.ConnectionString, opts.CommandTimeout);
Expand Down

0 comments on commit cf424cd

Please sign in to comment.