Skip to content

Commit

Permalink
3rd time is a charm for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkis117 committed Jan 8, 2017
1 parent 85287f2 commit 0fedac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skip_tags: true
image: Visual Studio 2015
configuration: Release
install:
- mklink /J Data "test/Mime-Detective.Tests/Data"
- mklink /J Data "test/GenericMvc.Tests/Data/FileRepo"
- ps: mkdir -Force ".\build\" | Out-Null
- ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain/dotnet-install.ps1" -OutFile ".\build\installcli.ps1"
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
Expand Down
2 changes: 1 addition & 1 deletion src/GenericMvc/Repositories/FileRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public FileRepository(string rootFolder, bool includeNestedDirectories = false)
{
//check if folder exists here
if (!System.IO.Directory.Exists(rootFolder))
throw new System.IO.DirectoryNotFoundException(rootFolder);
throw new System.IO.DirectoryNotFoundException($"Directory:{rootFolder}, Current Directory {System.IO.Directory.GetCurrentDirectory()}");

this.RootFolder = rootFolder;

Expand Down

0 comments on commit 0fedac3

Please sign in to comment.