Skip to content

Commit

Permalink
fix: formatting of the release_config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Feb 4, 2024
1 parent 98152d2 commit 897bb90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.11.4

# Fix:
- Formatting of the release_config.json file

# 0.11.3

# Fix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class FlutterBuildPlugin extends ImpaktfullCliPlugin {
if (!file.existsSync()) {
file.createSync(recursive: true);
}
file.writeAsStringSync(jsonEncode(newConfigData));
final encoder = JsonEncoder.withIndent(' ');
file.writeAsStringSync(encoder.convert(newConfigData));
if (isGitProject) {
await processRunner.runProcess([
'git',
Expand Down

0 comments on commit 897bb90

Please sign in to comment.