Skip to content

Commit

Permalink
Add note for why we are throwing on a missing file, for potential forks
Browse files Browse the repository at this point in the history
  • Loading branch information
zeichenreihe committed Sep 11, 2023
1 parent 9f581a5 commit 473a7d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ static def nextFeatherVersion(ENV, version_id) {
}
}
} catch (FileNotFoundException e) {
// Note: we consider it a hard failure if the maven-metadata.xml file does
// not exist. However if you don't have this file yet, you can comment out
// the line below to start at build number 1.
throw new RuntimeException(e);
}

Expand Down

0 comments on commit 473a7d5

Please sign in to comment.