Skip to content

Commit

Permalink
argument size fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ucoruh committed Apr 30, 2023
1 parent 352b4db commit 8596269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebis-grade-excel-importer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Program
static void Main(string[] args)
{
// Check if the user provided the correct number of arguments
if (args.Length != 6)
if (args.Length != 7)
{
Console.WriteLine("Please provide five arguments: first file path, second file path, reference column name, source column name, destination column name, first file sheet index, second file sheet index");
return;
Expand Down

0 comments on commit 8596269

Please sign in to comment.