Changeset 185
- Timestamp:
- 02/14/07 17:05:41 (2 years ago)
- Files:
-
- trunk/cheesecake/cheesecake_index.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cheesecake/cheesecake_index.py
r184 r185 1402 1402 1403 1403 if remove_log_file and not self.keep_log: 1404 #log_path = os.path.join(self.sandbox, self.logfile) 1405 log_path = self.logfile 1406 if os.path.exists(log_path): 1404 if os.path.exists(self.logfile): 1407 1405 try: 1408 os.unlink( log_path)1406 os.unlink(self.logfile) 1409 1407 except OSError, e: 1410 1408 # TODO … … 1724 1722 Describes whenever package has been succefully installed. 1725 1723 """ 1724 self.log.info("Trying to install package %s" % self.name) 1725 1726 1726 self.sandbox_install_dir = os.path.join(self.sandbox, "tmp_install_%s" % self.package_name) 1727 1727
