aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linaro.org>2018-05-08 17:50:46 -0500
committerAníbal Limón <anibal.limon@linaro.org>2018-05-08 17:50:46 -0500
commit393a0f6afcaaf7da1a043b1fd20509fe5cfe68e2 (patch)
tree7f571173c938f909e31cfc0524148007e0b37f38 /bin
parent72f6cfdd5b3a46b900343bf531be75163fd16456 (diff)
bin/automerge2repo.py: Set XML comment line after specify xml
Repo tool expects to have <xml/> tag before any other. Signed-off-by: Aníbal Limón <anibal.limon@linaro.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/automerge2repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/automerge2repo.py b/bin/automerge2repo.py
index b7ea33a..90dc381 100755
--- a/bin/automerge2repo.py
+++ b/bin/automerge2repo.py
@@ -32,8 +32,8 @@ def main():
repos[repo_id] = (repo_remote, repo_name, repo_branch)
with open(sys.argv[2], 'w') as f:
- f.write('<!-- THIS FILE IS AUTOGENERATED USING automerge2repo.py -->\n')
f.write('<?xml version="1.0" encoding="UTF-8"?>\n')
+ f.write('<!-- THIS FILE IS AUTOGENERATED USING automerge2repo.py -->\n')
f.write('<manifest>\n')
for remote_name in sorted(remotes.keys()):