Set the exit status of the actual finished command. BLD200402261900
authormentlicher@netbeans.org
Thu, 26 Feb 2004 18:08:35 +0000
changeset 4232567f1a9ecafa
parent 4231 88325c957eac
child 4233 81957e1dae88
Set the exit status of the actual finished command.
This is a part of fix of issue #40451.
vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/visualizers/OutputVisualizer.java
     1.1 --- a/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/visualizers/OutputVisualizer.java	Thu Feb 26 18:03:08 2004 +0000
     1.2 +++ b/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/visualizers/OutputVisualizer.java	Thu Feb 26 18:08:35 2004 +0000
     1.3 @@ -259,7 +259,8 @@
     1.4      final class FinishListener implements TaskListener{
     1.5          public void taskFinished(Task task){            
     1.6              finishVisualizer = true;
     1.7 -            setExitStatus(vce.getExitStatus());
     1.8 +            UserCommandTask utask = (UserCommandTask) task;
     1.9 +            setExitStatus(utask.getExitStatus());
    1.10          }
    1.11      }
    1.12