Skip to content

Commit

Permalink
ci: add missing comma in JSON file
Browse files Browse the repository at this point in the history
  • Loading branch information
lentidas committed Oct 17, 2024
1 parent 2751cc9 commit 22f5b21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"include-v-in-tag": true,
"include-component-in-tag": false,
"pull-request-title-pattern": "chore: release ${version}"
"pull-request-title-pattern": "chore: release ${version}",
"label": "autorelease-pending",
"release-label": "autorelease-tagged",
"bump-minor-pre-major": true,
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ch/heigvd/dai/utilities/FileManipulator.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void writeBytesToFile(byte[] bytes) throws IOException, RuntimeException
if (!writeEnabled)
throw new RuntimeException(
"Unable to write to file, because write operations are not activated for this object.");

try (FileOutputStream fileOutputStream = new FileOutputStream(file);
BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(fileOutputStream)) {
bufferedOutputStream.write(bytes);
Expand Down

0 comments on commit 22f5b21

Please sign in to comment.