- Add .svgz to image list
- Exclude groups.google from search engines
- Add %time5 tag to support log format with iso time with timezone.
-
+- Add option DynamicDNSLookup to make DNS lookup during output instead
+ of during log analysis processing.
+- Increase default value for MaxRowsInHTMLOutput
+
***** 7.4 *****
if ($nboftargetok) {
+ # Update GIT tag if required
+ #---------------------------
+ if ($nbofpublishneedtag)
+ {
+ print "Go to directory $SOURCE\n";
+ $olddir=getcwd();
+ chdir("$SOURCE");
+
+ print 'Run git tag -a -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
+ $ret=`git tag -a -m "$MAJOR.$MINOR.$BUILD" "$MAJOR.$MINOR" 2>&1`;
+ if ($ret =~ /already exists/)
+ {
+ print "WARNING: Tag ".$MAJOR.'.'.$MINOR." already exists. Overwrite (y/N) ? ";
+ $QUESTIONOVERWRITETAG=<STDIN>;
+ chomp($QUESTIONOVERWRITETAG);
+ if ($QUESTIONOVERWRITETAG =~ /(o|y)/)
+ {
+ print 'Run git tag -a -f -m "'.$MAJOR.'.'.$MINOR.'" "'.$MAJOR.'.'.$MINOR.'"'."\n";
+ $ret=`git tag -a -f -m "$MAJOR.$MINOR" "$MAJOR.$MINOR"`;
+ }
+ }
+ print 'Run git push --tags'."\n";
+ $ret=`git push --tags`;
+ chdir("$olddir");
+ }
+
# Update buildroot
#-----------------
if (! $copyalreadydone) {