def check_params(self): if not self.template_file: click.secho("FAM Template Not Found", fg="red") raise TemplateNotFoundException("Missing option --template-file") if not os.path.isfile(self.template_file): click.secho("FAM Template Not Found", fg="red") raise TemplateNotFoundException("template-file Not Found") self.template_file = os.path.abspath(self.template_file) self.template_file_dir = os.path.dirname( os.path.abspath(self.template_file))
def check_params(self): if not self.template_file: click.secho("FAM Template Not Found", fg="red") raise TemplateNotFoundException("Missing option --template-file") if not os.path.isfile(self.template_file): click.secho("FAM Template Not Found", fg="red") raise TemplateNotFoundException("template-file Not Found") self.template_file = os.path.abspath(self.template_file) self.template_file_dir = os.path.dirname(os.path.abspath(self.template_file)) uc = UserConfig() if self.cos_bucket and self.cos_bucket.endswith("-" + uc.appid): self.cos_bucket = self.cos_bucket.replace("-" + uc.appid, '')
def check_params(self): if not self.template_file: click.secho("FAM Template Not Found", fg="red") raise TemplateNotFoundException("Missing option --template-file".format(self.template_file))