Skip to content

Commit

Permalink
Merge pull request #121 from OHDSI/Fix_ETL_library_path_reading
Browse files Browse the repository at this point in the history
etlLibraryPath variable should be a param
  • Loading branch information
bradanton authored Sep 27, 2024
2 parents 8deac82 + 06125dd commit bd59f81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sources/Tests/RunLocal/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ static void Main(string[] args)

Console.WriteLine($"{Directory.GetCurrentDirectory()}");

var etlLibraryPath = "";
Process(EtlLibrary.CreateVendorInstance(etlLibraryPath, args[0]), int.Parse(args[1]), int.Parse(args[2]), args[3], bool.Parse(args[4]), etlLibraryPath);
Process(EtlLibrary.CreateVendorInstance(args[5], args[0]), int.Parse(args[1]), int.Parse(args[2]), args[3], bool.Parse(args[4]), args[5]);

//int[] slicesNum = [24, 40, 48, 96, 192];

Expand Down

0 comments on commit bd59f81

Please sign in to comment.