Skip to content

Commit

Permalink
Fix warnings in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisaruGuruge committed Sep 18, 2023
1 parent f7a0f1c commit 382b973
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ task testExamples {
}
}
} catch (Exception e) {
throw new GradleException("Example Build failed: " + e.message)
println("Example Build failed: " + e.message)
throw e
}
}
}
Expand All @@ -67,7 +68,8 @@ task buildExamples {
}
}
} catch (Exception e) {
throw new GradleException("Example Build failed: " + e.message)
println("Example Build failed: " + e.message)
throw e
}
}
}
Expand Down

0 comments on commit 382b973

Please sign in to comment.