Skip to content

Commit

Permalink
Merge pull request #1519 from pdoh00/master
Browse files Browse the repository at this point in the history
Updated message when paket.dependencies cannot be found
  • Loading branch information
forki committed Mar 16, 2016
2 parents c495d42 + 6be52a9 commit 7bb1718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Paket.Core/PublicAPI.fs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type Dependencies(dependenciesFileName: string) =
match parent with
| null ->
if withError then
failwithf "Could not find '%s'. To use Paket with this solution, please run 'paket init' first." Constants.DependenciesFileName
failwithf "Could not find '%s'. To use Paket with this solution, please run 'paket init' first.\nIf you have already run 'paket.init' then ensure that '%s' is located in the source directory.\nLike this:\nMySourceDir\n .paket\n paket.dependencies" Constants.DependenciesFileName Constants.DependenciesFileName
else
Constants.DependenciesFileName
| _ -> findInPath(parent, withError)
Expand Down

0 comments on commit 7bb1718

Please sign in to comment.