]> git.tdb.fi Git - builder.git/blobdiff - source/externalaction.h
Move class PackageRef to its own files
[builder.git] / source / externalaction.h
index 52eed37e5da12857725d19b128b2f2869dc5cb27..0d0924a966e049777f0afe02bd700d80e9d6e025 100644 (file)
@@ -12,8 +12,9 @@ public:
 protected:
        std::list<std::string> argv;
        int pid;
+       int exit_code;
        
-       ExternalAction(Builder &b): Action(b) { }
+       ExternalAction(Builder &b): Action(b), pid(0), exit_code(0) { }
        void launch();
 };