Skip to content
Snippets Groups Projects
Commit abe327df authored by Frank Steinberg's avatar Frank Steinberg
Browse files

Fix.

parent 9bdb8075
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ if os.path.isfile(translatedfilename) or os.path.isfile(origfilename): ...@@ -119,7 +119,7 @@ if os.path.isfile(translatedfilename) or os.path.isfile(origfilename):
cmd = "xsltproc --stringparam snippet %s %s/xsl/bjcp-2015-styleguide-merge.xsl %s > %s" % (snippetfilename, DIR, origfilename, translatedfilename) cmd = "xsltproc --stringparam snippet %s %s/xsl/bjcp-2015-styleguide-merge.xsl %s > %s" % (snippetfilename, DIR, origfilename, translatedfilename)
os.system(cmd) os.system(cmd)
log("committing to web server local repository") log("committing to web server local repository")
cmd = 'cd %s ; git commit %s/%s.xml -m "%s %s by %s from %s"' & (DIR, LANG, id, id, elem, user, addr) cmd = 'cd %s ; git commit %s/%s.xml -m "%s %s by %s from %s"' % (DIR, LANG, id, id, elem, user, addr)
os.system(cmd) os.system(cmd)
log("updating files in the background... otherwise done.") log("updating files in the background... otherwise done.")
cmd = "make -C %s background" % DIR cmd = "make -C %s background" % DIR
......
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