def make_install(self): """ Install Node. """ exit_code = call([shared.gmake(), "install"], stdout=self.logfile, stderr=self.logfile) if exit_code is not 0: raise BuildError("make install has failed")
def make(self): """ Build Node. """ exit_code = call([shared.gmake()], stdout=self.logfile, stderr=self.logfile) if exit_code is not 0: raise BuildError("make has failed")