本文整理汇总了Python中sprinter.formula.base.FormulaBase.remove方法的典型用法代码示例。如果您正苦于以下问题:Python FormulaBase.remove方法的具体用法?Python FormulaBase.remove怎么用?Python FormulaBase.remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sprinter.formula.base.FormulaBase
的用法示例。
在下文中一共展示了FormulaBase.remove方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: remove
# 需要导入模块: from sprinter.formula.base import FormulaBase [as 别名]
# 或者: from sprinter.formula.base.FormulaBase import remove [as 别名]
def remove(self):
if self.source.has('executable'):
symlink = self.source.get('symlink', self.source.get('executable'))
if os.path.exists(symlink) and os.path.islink(symlink):
try:
self.directory.remove_from_bin(
self.source('symlink', self.source.get('executable')))
except DirectoryException:
pass
FormulaBase.remove(self)
示例2: remove
# 需要导入模块: from sprinter.formula.base import FormulaBase [as 别名]
# 或者: from sprinter.formula.base.FormulaBase import remove [as 别名]
def remove(self):
self.__run_command('remove', 'source')
FormulaBase.remove(self)
示例3: remove
# 需要导入模块: from sprinter.formula.base import FormulaBase [as 别名]
# 或者: from sprinter.formula.base.FormulaBase import remove [as 别名]
def remove(self):
if self.source.is_affirmative('remove_file_on_delete', False):
os.path.unlink(
os.path.expanduser(self.source.get('target')))
FormulaBase.remove(self)
示例4: remove
# 需要导入模块: from sprinter.formula.base import FormulaBase [as 别名]
# 或者: from sprinter.formula.base.FormulaBase import remove [as 别名]
def remove(self):
if self.source.is_affirmative('remove_p4root'):
self.logger.info("Removing %s..." % self.source.get('root_path'))
shutil.rmtree(os.path.expanduser(self.source.get('root_path')))
FormulaBase.remove(self)
示例5: remove
# 需要导入模块: from sprinter.formula.base import FormulaBase [as 别名]
# 或者: from sprinter.formula.base.FormulaBase import remove [as 别名]
def remove(self):
source_opts = self.__get_options(self.source)
self.__remove_symlink(**source_opts)
FormulaBase.remove(self)