This commit is contained in:
David Anderson 2017-07-29 14:52:08 -07:00
commit 093e00a07c
1 changed files with 8 additions and 0 deletions

View File

@ -553,6 +553,14 @@ static int insert_wu_tags(WORKUNIT& wu, APP& app) {
wu.name,
app.name
);
if (!empty(wu.keywords)) {
char buf2[1024];
sprintf(buf2,
" <job_keywords>%s</job_keywords>\n",
wu.keywords
);
strcat(buf, buf2);
}
return insert_after(wu.xml_doc, "<workunit>\n", buf);
}