Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
govert committed Jun 14, 2015
2 parents e8b8d6d + ae480e0 commit 1c73b93
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/ExcelDnaPack/PackProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ static void Main(string[] args)
}

string outputDirectory = Path.GetDirectoryName(xllOutputPath);
if (outputDirectory == String.Empty)
{
outputDirectory = "."; // https://github.com/Excel-DNA/ExcelDna/issues/7
}

if (!Directory.Exists(outputDirectory))
{
try
Expand Down

0 comments on commit 1c73b93

Please sign in to comment.