From: SONOLET Aymeric Date: Tue, 5 Dec 2023 12:05:57 +0000 (+0100) Subject: fix update cmd: only update products with a git config. Fix git pull X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=cd0e66f904b3af9d7cc6f3fbb1d9d869bf829183;p=tools%2Fsat.git fix update cmd: only update products with a git config. Fix git pull command. --- diff --git a/commands/source_update.py b/commands/source_update.py new file mode 100644 index 0000000..c934d62 --- /dev/null +++ b/commands/source_update.py @@ -0,0 +1,664 @@ +#!/usr/bin/env python +# -*- coding:utf-8 -*- +# Copyright (C) 2010-2012 CEA/DEN +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +import os +import shutil +import re +import subprocess + +import src +import prepare +import src.debug as DBG + +# Define all possible option for patch command : sat patch +parser = src.options.Options() +parser.add_option( + "p", + "products", + "list2", + "products", + _( + "Optional: products from which to get the sources. This option accepts a comma separated list." + ), +) + + +def update_source_for_dev(config, product_info, source_dir, logger, pad): + """The method called if the product is in development mode + + :param config Config: The global configuration + :param product_info Config: The configuration specific to + the product to be prepared + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param logger Logger: The logger instance to use for the display and logging + :param pad int: The gap to apply for the terminal display + :return: True if it succeed, else False + :rtype: boolean + """ + + # Call the function corresponding to get the sources with True checkout + retcode = update_product_sources( + config, product_info, True, source_dir, logger, pad, checkout=True + ) + logger.write("\n", 3, False) + # +2 because product name is followed by ': ' + logger.write(" " * (pad + 2), 3, False) + + logger.write( + "dev: %s ... " % src.printcolors.printcInfo(product_info.source_dir), 3, False + ) + logger.flush() + + return retcode + + +def update_source_from_git( + config, product_info, source_dir, logger, pad, is_dev=False, environ=None +): + """The method called if the product is to be get in git mode + + :param product_info Config: The configuration specific to + the product to be prepared + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param logger Logger: The logger instance to use for the display and logging + :param pad int: The gap to apply for the terminal display + :param is_dev boolean: True if the product is in development mode + :param environ src.environment.Environ: The environment to source when + extracting. + :return: True if it succeed, else False + :rtype: boolean + """ + # The str to display + coflag = "git" + + use_repo_dev = False + if ( + "APPLICATION" in config + and "properties" in config.APPLICATION + and "repo_dev" in config.APPLICATION.properties + and config.APPLICATION.properties.repo_dev == "yes" + ): + use_repo_dev = True + + # Get the repository address. + # If the application has the repo_dev property + # Or if the product is in dev mode + # Then we use repo_dev if the key exists + if (is_dev or use_repo_dev) and "repo_dev" in product_info.git_info: + coflag = src.printcolors.printcHighlight(coflag.upper()) + repo_git = product_info.git_info.repo_dev + else: + repo_git = product_info.git_info.repo + + # Display informations + logger.write("%s:%s" % (coflag, src.printcolors.printcInfo(repo_git)), 3, False) + logger.write(" " * (pad + 50 - len(repo_git)), 3, False) + logger.write( + " tag:%s" % src.printcolors.printcInfo(product_info.git_info.tag), 3, False + ) + logger.write(" %s. " % ("." * (10 - len(product_info.git_info.tag))), 3, False) + logger.flush() + logger.write("\n", 5, False) + + git_options = "" + if "git_options" in product_info.git_info: + git_options = product_info.git_info.git_options + + # Call the system function that do the checkout in git mode + retcode = src.system.git_checkout( + product_info.git_info.tag, + git_options, + source_dir, + logger, + environ, + ) + if not retcode: + logger.write( + r""" +Error, %(repo)s could not checkout %(branch)s. Please check you don't +have uncommited work and branch or tag %(branch)s exists.""" + % {"repo": repo_git, "branch": product_info.git_info.tag} + ) + raise Exception() + + # Call the system function that do the checkout in git mode + retcode = src.system.git_pull( + repo_git, + product_info.git_info.tag, + git_options, + source_dir, + logger, + environ, + ) + if not retcode: + logger.write( + r""" +Error, %(repo)s could not pull branch %(branch)s. Please check that your branch +has not diverged from repo.""" + % {"repo": repo_git, "branch": product_info.git_info.tag} + ) + raise Exception() + return retcode + + +def get_source_from_archive(config, product_info, source_dir, logger): + """The method called if the product is to be get in archive mode + + :param config Config: The global configuration + :param product_info Config: The configuration specific to + the product to be prepared + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param logger Logger: The logger instance to use for the display and logging + :return: True if it succeed, else False + :rtype: boolean + """ + + # check if pip should be used : pip mode id activated if the application + # and product have pip property + if src.appli_test_property( + config, "pip", "yes" + ) and src.product.product_test_property(product_info, "pip", "yes"): + pip_msg = "PIP : do nothing, product will be downloaded later at compile time " + logger.write(pip_msg, 3) + return True + + # check archive exists + if not os.path.exists(product_info.archive_info.archive_name): + # The archive is not found on local file system (ARCHIVEPATH) + # We try ftp! + logger.write( + "\n The archive is not found on local file system, we try ftp\n", 3 + ) + ret = src.find_file_in_ftppath( + product_info.archive_info.archive_name, + config.PATHS.ARCHIVEFTP, + config.LOCAL.archive_dir, + logger, + ) + if ret: + # archive was found on ftp and stored in ret + product_info.archive_info.archive_name = ret + else: + raise src.SatException( + _("Archive not found in ARCHIVEPATH, nor on ARCHIVEFTP: '%s'") + % product_info.archive_info.archive_name + ) + + logger.write( + "arc:%s ... " + % src.printcolors.printcInfo(product_info.archive_info.archive_name), + 3, + False, + ) + logger.flush() + # Call the system function that do the extraction in archive mode + retcode, NameExtractedDirectory = src.system.archive_extract( + product_info.archive_info.archive_name, source_dir.dir(), logger + ) + + # Rename the source directory if + # it does not match with product_info.source_dir + if NameExtractedDirectory.replace("/", "") != os.path.basename( + product_info.source_dir + ): + shutil.move( + os.path.join( + os.path.dirname(product_info.source_dir), NameExtractedDirectory + ), + product_info.source_dir, + ) + + return retcode + + +def get_source_from_dir(product_info, source_dir, logger): + if "dir_info" not in product_info: + msg = _( + "Error: you must put a dir_info section" + " in the file %s.pyconf" % product_info.name + ) + logger.write("\n%s\n" % src.printcolors.printcError(msg), 1) + return False + + if "dir" not in product_info.dir_info: + msg = _( + "Error: you must put a dir in the dir_info section" + " in the file %s.pyconf" % product_info.name + ) + logger.write("\n%s\n" % src.printcolors.printcError(msg), 1) + return False + + # check that source exists + if not os.path.exists(product_info.dir_info.dir): + msg = _( + "Error: the dir %s defined in the file" + " %s.pyconf does not exists" + % (product_info.dir_info.dir, product_info.name) + ) + logger.write("\n%s\n" % src.printcolors.printcError(msg), 1) + return False + + logger.write( + "DIR: %s ... " % src.printcolors.printcInfo(product_info.dir_info.dir), 3 + ) + logger.flush() + + retcode = src.Path(product_info.dir_info.dir).copy(source_dir) + + return retcode + + +def get_source_from_cvs( + user, product_info, source_dir, checkout, logger, pad, environ=None +): + """The method called if the product is to be get in cvs mode + + :param user str: The user to use in for the cvs command + :param product_info Config: The configuration specific to + the product to be prepared + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param checkout boolean: If True, get the source in checkout mode + :param logger Logger: The logger instance to use for the display and logging + :param pad int: The gap to apply for the terminal display + :param environ src.environment.Environ: The environment to source when + extracting. + :return: True if it succeed, else False + :rtype: boolean + """ + # Get the protocol to use in the command + if "protocol" in product_info.cvs_info: + protocol = product_info.cvs_info.protocol + else: + protocol = "pserver" + + # Construct the line to display + if "protocol" in product_info.cvs_info: + cvs_line = "%s:%s@%s:%s" % ( + protocol, + user, + product_info.cvs_info.server, + product_info.cvs_info.product_base, + ) + else: + cvs_line = "%s / %s" % ( + product_info.cvs_info.server, + product_info.cvs_info.product_base, + ) + + coflag = "cvs" + if checkout: + coflag = src.printcolors.printcHighlight(coflag.upper()) + + logger.write("%s:%s" % (coflag, src.printcolors.printcInfo(cvs_line)), 3, False) + logger.write(" " * (pad + 50 - len(cvs_line)), 3, False) + logger.write( + " src:%s" % src.printcolors.printcInfo(product_info.cvs_info.source), 3, False + ) + logger.write(" " * (pad + 1 - len(product_info.cvs_info.source)), 3, False) + logger.write( + " tag:%s" % src.printcolors.printcInfo(product_info.cvs_info.tag), 3, False + ) + # at least one '.' is visible + logger.write(" %s. " % ("." * (10 - len(product_info.cvs_info.tag))), 3, False) + logger.flush() + logger.write("\n", 5, False) + + # Call the system function that do the extraction in cvs mode + retcode = src.system.cvs_extract( + protocol, + user, + product_info.cvs_info.server, + product_info.cvs_info.product_base, + product_info.cvs_info.tag, + product_info.cvs_info.source, + source_dir, + logger, + checkout, + environ, + ) + return retcode + + +def get_source_from_svn(user, product_info, source_dir, checkout, logger, environ=None): + """The method called if the product is to be get in svn mode + + :param user str: The user to use in for the svn command + :param product_info Config: The configuration specific to + the product to be prepared + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param checkout boolean: If True, get the source in checkout mode + :param logger Logger: The logger instance to use for the display and logging + :param environ src.environment.Environ: The environment to source when + extracting. + :return: True if it succeed, else False + :rtype: boolean + """ + coflag = "svn" + if checkout: + coflag = src.printcolors.printcHighlight(coflag.upper()) + + logger.write( + "%s:%s ... " % (coflag, src.printcolors.printcInfo(product_info.svn_info.repo)), + 3, + False, + ) + logger.flush() + logger.write("\n", 5, False) + # Call the system function that do the extraction in svn mode + retcode = src.system.svn_extract( + user, + product_info.svn_info.repo, + product_info.svn_info.tag, + source_dir, + logger, + checkout, + environ, + ) + return retcode + + +def update_product_sources( + config, product_info, is_dev, source_dir, logger, pad, checkout=False +): + """Get the product sources. + + :param config Config: The global configuration + :param product_info Config: The configuration specific to + the product to be prepared + :param is_dev boolean: True if the product is in development mode + :param source_dir Path: The Path instance corresponding to the + directory where to put the sources + :param logger Logger: The logger instance to use for the display and logging + :param pad int: The gap to apply for the terminal display + :param checkout boolean: If True, get the source in checkout mode + :return: True if it succeed, else False + :rtype: boolean + """ + + # Get the application environment + logger.write(_("Set the application environment\n"), 5) + env_appli = src.environment.SalomeEnviron( + config, src.environment.Environ(dict(os.environ)) + ) + env_appli.set_application_env(logger) + + # Call the right function to get sources regarding the product settings + if not checkout and is_dev: + return get_source_for_dev(config, product_info, source_dir, logger, pad) + + if product_info.get_source == "git": + return update_source_from_git( + config, product_info, source_dir, logger, pad, is_dev, env_appli + ) + + if product_info.get_source == "archive": + return get_source_from_archive(config, product_info, source_dir, logger) + + if product_info.get_source == "dir": + return get_source_from_dir(product_info, source_dir, logger) + + if product_info.get_source == "cvs": + cvs_user = config.USER.cvs_user + return get_source_from_cvs( + cvs_user, product_info, source_dir, checkout, logger, pad, env_appli + ) + + if product_info.get_source == "svn": + svn_user = config.USER.svn_user + return get_source_from_svn( + svn_user, product_info, source_dir, checkout, logger, env_appli + ) + + if product_info.get_source == "native": + # for native products we check the corresponding system packages are installed + logger.write("Native : Checking system packages are installed\n", 3) + check_cmd = src.system.get_pkg_check_cmd( + config.VARS.dist_name + ) # (either rmp or apt) + run_pkg, build_pkg = src.product.check_system_dep( + config.VARS.dist, check_cmd, product_info + ) + result = True + for pkg in run_pkg: + logger.write(" - " + pkg + " : " + run_pkg[pkg] + "\n", 1) + if "KO" in run_pkg[pkg]: + result = False + for pkg in build_pkg: + logger.write(" - " + pkg + " : " + build_pkg[pkg] + "\n", 1) + if "KO" in build_pkg[pkg]: + result = False + if result == False: + logger.error( + "some system dependencies are missing, please install them with " + + check_cmd[0] + ) + return result + + if product_info.get_source == "fixed": + # skip + logger.write("%s " % src.printcolors.printc(src.OK_STATUS), 3, False) + msg = "FIXED : %s\n" % product_info.install_dir + + if not os.path.isdir(product_info.install_dir): + logger.warning( + "The fixed path do not exixts!! Please check it : %s\n" + % product_info.install_dir + ) + else: + logger.write(msg, 3) + return True + + # if the get_source is not in [git, archive, cvs, svn, fixed, native] + logger.write( + _('Unknown get source method "%(get)s" for product %(product)s') + % {"get": product_info.get_source, "product": product_info.name}, + 3, + False, + ) + logger.write(" ... ", 3, False) + logger.flush() + return False + + +def update_all_product_sources(config, products, logger): + """Update/get all the product sources. + + :param config Config: The global configuration + :param products List: The list of tuples (product name, product informations) + :param logger Logger: The logger instance to be used for the logging + :return: the tuple (number of success, dictionary product_name/success_fail) + :rtype: (int,dict) + """ + + # Initialize the variables that will count the fails and success + results = dict() + good_result = 0 + + # Get the maximum name length in order to format the terminal display + max_product_name_len = 1 + if len(products) > 0: + max_product_name_len = max(map(lambda l: len(l), products[0])) + 4 + + # The loop on all the products from which to get the sources + # DBG.write("source.get_all_product_sources config id", id(config), True) + for product_name, product_info in products: + # get product name, product informations and the directory where to put + # the sources + if not ( + src.product.product_is_fixed(product_info) + or src.product.product_is_native(product_info) + ): + source_dir = src.Path(product_info.source_dir) + else: + source_dir = src.Path("") + + # display and log + logger.write("%s: " % src.printcolors.printcLabel(product_name), 3) + logger.write(" " * (max_product_name_len - len(product_name)), 3, False) + logger.write("\n", 4, False) + + # TODO: check that there is no pb on not .git tracked products + # if source_dir.exists(): + # logger.write("%s " % src.printcolors.printc(src.OK_STATUS), 3, False) + # msg = ( + # _( + # "INFO : Not doing anything because the source directory already exists:\n %s\n" + # ) + # % source_dir + # ) + # logger.write(msg, 3) + # good_result = good_result + 1 + # # Do not get the sources and go to next product + # continue + + is_dev = src.product.product_is_dev(product_info) + # Call to the function that get the sources for one product + retcode = update_product_sources( + config, + product_info, + is_dev, + source_dir, + logger, + max_product_name_len, + checkout=False, + ) + + # Check that the sources are correctly get using the files to be tested + # in product information + if retcode: + check_OK, wrong_path = check_sources(product_info, logger) + if not check_OK: + # Print the missing file path + msg = _("The required file %s does not exists. " % wrong_path) + logger.write(src.printcolors.printcError("\nERROR: ") + msg, 3) + retcode = False + + # show results + results[product_name] = retcode + if retcode: + # The case where it succeed + res = src.OK_STATUS + good_result = good_result + 1 + else: + # The case where it failed + res = src.KO_STATUS + + # print the result + if not ( + src.product.product_is_fixed(product_info) + or src.product.product_is_native(product_info) + ): + logger.write("%s\n" % src.printcolors.printc(res), 3, False) + + return good_result, results + + +def check_sources(product_info, logger): + """Check that the sources are correctly get, using the files to be tested + in product information + + :param product_info Config: The configuration specific to + the product to be prepared + :return: True if the files exists (or no files to test is provided). + :rtype: boolean + """ + # Get the files to test if there is any + if "present_files" in product_info and "source" in product_info.present_files: + l_files_to_be_tested = product_info.present_files.source + for file_path in l_files_to_be_tested: + # The path to test is the source directory + # of the product joined the file path provided + path_to_test = os.path.join(product_info.source_dir, file_path) + logger.write(_("\nTesting existence of file: \n"), 5) + logger.write(path_to_test, 5) + if not os.path.exists(path_to_test): + return False, path_to_test + logger.write(src.printcolors.printcSuccess(" OK\n"), 5) + return True, "" + + +def description(): + """method that is called when salomeTools is called with --help option. + + :return: The text to display for the source command description. + :rtype: str + """ + return _( + "The source command gets the sources of the application products " + "from cvs, git or an archive.\n\nexample:" + "\nsat source SALOME-master --products KERNEL,GUI" + ) + + +def run(args, runner, logger): + """method that is called when salomeTools is called with source parameter.""" + DBG.write("source.run()", args) + # Parse the options + (options, args) = parser.parse_args(args) + + # check that the command has been called with an application + src.check_config_has_application(runner.cfg) + + # Print some informations + logger.write( + _("Getting sources of the application %s\n") + % src.printcolors.printcLabel(runner.cfg.VARS.application), + 1, + ) + src.printcolors.print_value(logger, "workdir", runner.cfg.APPLICATION.workdir, 2) + logger.write("\n", 2, False) + + # Get the products list with products informations regarding the options + products_infos = src.product.get_products_list(options, runner.cfg, logger) + + # Call to the function that gets all the sources + good_result, results = update_all_product_sources(runner.cfg, products_infos, logger) + + # Display the results (how much passed, how much failed, etc...) + status = src.OK_STATUS + details = [] + + logger.write("\n", 2, False) + if good_result == len(products_infos): + res_count = "%d / %d" % (good_result, good_result) + else: + status = src.KO_STATUS + res_count = "%d / %d" % (good_result, len(products_infos)) + + for product in results: + if results[product] == 0 or results[product] is None: + details.append(product) + + result = len(products_infos) - good_result + + # write results + logger.write(_("Getting sources of the application:"), 1) + logger.write(" " + src.printcolors.printc(status), 1, False) + logger.write(" (%s)\n" % res_count, 1, False) + + if len(details) > 0: + logger.write(_("Following sources haven't been get:\n"), 2) + logger.write(" ".join(details), 2) + logger.write("\n", 2, False) + + return result diff --git a/commands/update.py b/commands/update.py index 9f28c1b..f44f547 100644 --- a/commands/update.py +++ b/commands/update.py @@ -33,8 +33,8 @@ parser.add_option( "products", _("Optional: products to update. This option accepts a comma separated list."), ) -# parser.add_option('f', 'force', 'boolean', 'force', -# _("Optional: force to update the products in development mode.")) +parser.add_option('f', 'force', 'boolean', 'force', + _("Optional: force to update the products in development mode.")) parser.add_option('', 'force_patch', 'boolean', 'force_patch', _("Optional: force to apply patch to the products in development mode.")) # parser.add_option('c', 'complete', 'boolean', 'complete', @@ -77,7 +77,7 @@ def find_git_products(l_products): for p_name_p_cfg in l_products: __, prod_cfg = p_name_p_cfg if "source_dir" in prod_cfg and os.path.exists(prod_cfg.source_dir): - if os.path.exists(prod_cfg.source_dir + "/.git"): + if prod_cfg.get_source == "git": l_res.append(p_name_p_cfg) return l_res @@ -144,6 +144,7 @@ class UpdateOp: (options, args) = parser.parse_args(args) self._list_of_products = options.products self._force_patch = options.force_patch + self._force = options.force self.runner = runner self.logger = logger @@ -223,6 +224,9 @@ class UpdateOp: productsToPrepare = self.getProductsToPrepare() args_product_to_prepare_opt = "--products " + ",".join(productsToPrepare) + productsToUpdate = self.getProductsToUpdate() + args_product_to_update_opt = "--products " + ",".join(productsToUpdate) + productsToClean = self.getProductsToClean(productsToPrepare) args_product_opt_clean = "--products " + ",".join(productsToClean) @@ -236,38 +240,47 @@ class UpdateOp: res_patch = 0 # Call the commands using the API - if len(productsToClean) > 0: - msg = _("Clean the source directories ...") - self.logger.write(msg, 3) - self.logger.flush() - args_clean = self.args_appli + args_product_opt_clean + " --sources" - res_clean = self.runner.clean(args_clean, batch=True, verbose = 0, logger_add_link = self.logger) - if res_clean == 0: - self.logger.write('%s\n' % src.printcolors.printc(src.OK_STATUS), 3) - else: - self.logger.write('%s\n' % src.printcolors.printc(src.KO_STATUS), 3) - if len(productsToPrepare) > 0: - msg = _("Get the sources of the products ...") + if self._force: + if len(productsToClean) > 0: + msg = _("Clean the source directories ...") + self.logger.write(msg, 3) + self.logger.flush() + args_clean = self.args_appli + args_product_opt_clean + " --sources" + res_clean = self.runner.clean(args_clean, batch=True, verbose = 0, logger_add_link = self.logger) + if res_clean == 0: + self.logger.write('%s\n' % src.printcolors.printc(src.OK_STATUS), 3) + else: + self.logger.write('%s\n' % src.printcolors.printc(src.KO_STATUS), 3) + if len(productsToPrepare) > 0: + msg = _("Get the sources of the products ...") + self.logger.write(msg, 5) + args_source = self.args_appli + args_product_to_prepare_opt + res_source = self.runner.source(args_source, logger_add_link=self.logger) + if res_source == 0: + self.logger.write("%s\n" % src.printcolors.printc(src.OK_STATUS), 5) + else: + self.logger.write("%s\n" % src.printcolors.printc(src.KO_STATUS), 5) + if len(productsToPatch) > 0: + msg = _("Patch the product sources (if any) ...") + self.logger.write(msg, 5) + args_patch = self.args_appli + args_product_opt_patch + res_patch = self.runner.patch(args_patch, logger_add_link=self.logger) + if res_patch == 0: + self.logger.write("%s\n" % src.printcolors.printc(src.OK_STATUS), 5) + else: + self.logger.write("%s\n" % src.printcolors.printc(src.KO_STATUS), 5) + if len(productsToUpdate) > 0: + msg = _("Update the sources of the products ...") self.logger.write(msg, 5) - args_source = self.args_appli + args_product_to_prepare_opt + args_source = self.args_appli + args_product_to_update_opt res_source = self.runner.source_update(args_source, logger_add_link=self.logger) if res_source == 0: self.logger.write("%s\n" % src.printcolors.printc(src.OK_STATUS), 5) else: self.logger.write("%s\n" % src.printcolors.printc(src.KO_STATUS), 5) - if len(productsToPatch) > 0: - msg = _("Patch the product sources (if any) ...") - self.logger.write(msg, 5) - args_patch = self.args_appli + args_product_opt_patch - res_patch = self.runner.patch(args_patch, logger_add_link=self.logger) - if res_patch == 0: - self.logger.write("%s\n" % src.printcolors.printc(src.OK_STATUS), 5) - else: - self.logger.write("%s\n" % src.printcolors.printc(src.KO_STATUS), 5) return res_clean + res_source + res_patch - def run(args, runner, logger): """method that is called when salomeTools is called with update parameter.""" updateOp = UpdateOp(args, runner, logger) diff --git a/src/system.py b/src/system.py index 3f869c3..ae13e34 100644 --- a/src/system.py +++ b/src/system.py @@ -238,9 +238,9 @@ def git_pull(from_what, tag, git_options, where, logger, environment=None): where.make() where_git = os.path.join(str(where), ".git") cmd = r""" -git --git-dir=%(where_git)s --work-tree=%(where)s pull $(git_options)s --ff-only %(remote)s %(tag)s +git --git-dir=%(where_git)s --work-tree=%(where)s pull %(git_options)s --ff-only origin %(tag)s """ - cmd = cmd % {'git_options': git_options, 'remote': from_what, 'tag': tag, 'where': str(where), 'where_git': where_git} + cmd = cmd % {'git_options': git_options, 'tag': tag, 'where': str(where), 'where_git': where_git} cmd=cmd.replace('date_format', '"%ai"') isOk = launch_command(cmd, logger, where, environment)