Skip to content
Snippets Groups Projects
Commit 8333a7fd authored by Studer Gabriel's avatar Studer Gabriel
Browse files

add newline when bumping version in singularity file

parent 371d6472
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,6 @@ lines = open(vfile).readlines()
for i, line in enumerate(lines):
if line.startswith("From: registry.scicore.unibas.ch/schwede/openstructure:"):
lines[i] = 'From: registry.scicore.unibas.ch/schwede/openstructure:'+\
'%s' % version_string
'%s\n' % version_string
break
open(vfile, "w").writelines(lines)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment