当前位置: 首页>>代码示例>>Python>>正文


Python FormulaBase.remove方法代码示例

本文整理汇总了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)
开发者ID:GreenGremlin,项目名称:sprinter,代码行数:12,代码来源:unpack.py

示例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)
开发者ID:WmoT,项目名称:sprinter,代码行数:5,代码来源:command.py

示例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)
开发者ID:dwwoelfel,项目名称:sprinter,代码行数:7,代码来源:template.py

示例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)
开发者ID:evocateur,项目名称:sprinter,代码行数:7,代码来源:perforce.py

示例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)
开发者ID:GreenGremlin,项目名称:sprinter,代码行数:6,代码来源:symlink.py


注:本文中的sprinter.formula.base.FormulaBase.remove方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。