From 2cf524c825855b22c9870bb273f38424172af968 Mon Sep 17 00:00:00 2001 From: Jeff Slight Date: Tue, 29 Sep 2020 13:39:23 -0700 Subject: [PATCH] gitlab: add new line to end of data.json file --- pkgs/applications/version-management/gitlab/data.json | 2 +- pkgs/applications/version-management/gitlab/update.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index 0c6f40550f96..ca7ea78e4f7c 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -10,4 +10,4 @@ "GITLAB_SHELL_VERSION": "13.7.0", "GITLAB_WORKHORSE_VERSION": "8.46.0" } -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/gitlab/update.py b/pkgs/applications/version-management/gitlab/update.py index 3db5099598a7..98d994f00038 100755 --- a/pkgs/applications/version-management/gitlab/update.py +++ b/pkgs/applications/version-management/gitlab/update.py @@ -117,6 +117,7 @@ def update_data(rev: str): with open(data_file_path.as_posix(), 'w') as f: json.dump(data, f, indent=2) + f.write("\n") @cli.command('update-rubyenv')