Changeset 1421 in ProjectBuilder


Ignore:
Timestamp:
Feb 24, 2012, 2:52:23 AM (12 years ago)
Author:
Bruno Cornec
Message:
  • Improve handling of lack of svn2cl command
File:
1 edited

Legend:

Unmodified
Added
Removed
  • devel/pb/lib/ProjectBuilder/CMS.pm

    r1302 r1421  
    827827        close(CL);
    828828        my $command = pb_check_req("svn2cl",1);
    829         if (-x $command) {
     829        if ((defined $command) && (-x $command)) {
    830830            pb_system("$command --group-by-day --authors=$authors -i -o $dest/ChangeLog $pkgdir","Generating ChangeLog from SVN with svn2cl");
    831831        } else {
Note: See TracChangeset for help on using the changeset viewer.