gitlab: add new line to end of data.json file
This commit is contained in:
parent
f98a6322e6
commit
2cf524c825
2 changed files with 2 additions and 1 deletions
|
@ -10,4 +10,4 @@
|
|||
"GITLAB_SHELL_VERSION": "13.7.0",
|
||||
"GITLAB_WORKHORSE_VERSION": "8.46.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue