Skip to content

Commit

Permalink
scripts/sanitycheck: throw if sln doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
Mersho committed Oct 17, 2023
1 parent 58505a2 commit 8ed3b3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/sanitycheck.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,8 @@ let SanityCheckNugetPackages () =
// TODO: have a windows solution file
file.Name = "gwallet.core-legacy.sln"
)
if solutions = null || solutions.Any() = false then
raise (FileNotFoundException())
for sol in solutions do
sanityCheckNugetPackagesFromSolution sol

Expand Down

0 comments on commit 8ed3b3f

Please sign in to comment.