Skip to content
Snippets Groups Projects
Commit 9266813d authored by Cristian Galperti's avatar Cristian Galperti
Browse files

all csv code description string

parent f81b7722
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ function writegitinfoheader()
return
end
taginfocmd = ['git for-each-ref refs/tags/' tagname ' --format="RTCCODE TAG HASH: %(objectname:short), CONTENTS: %(contents:subject), TAGGER: %(taggername), %(taggerdate), FULL TAG INFO: %(objecttype), %(refname), %(objectname)"'];
taginfocmd = ['git for-each-ref refs/tags/' tagname ' --format="RTCCODE TAG HASH, %(objectname:short), CONTENTS, %(contents:subject), TAGGER, %(taggername), %(taggerdate), FULL TAG INFO, %(objecttype), %(refname), %(objectname)"'];
[status,result] = system(taginfocmd);
if status~=0
......@@ -74,9 +74,9 @@ function writegitinfoheader()
descstr=result;
if expcodeset
descstr = ['EXPCODE: ' num2str(expcode) ', ' descstr];
descstr = ['EXPCODE, ' num2str(expcode) ', ' descstr];
else
descstr = ['EXPCODE: n/a, ' descstr];
descstr = ['EXPCODE, n/a, ' descstr];
end
if numel(descstr)>maxdesclen
......
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