From 51f98f4c4d0a12f9afc510eec97c7831a862a27e Mon Sep 17 00:00:00 2001 From: crouzet Date: Tue, 16 Jun 2020 16:13:35 +0200 Subject: [PATCH] sat #19218 : correction bug gestion out_dir_Path en postfix --- commands/package.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/package.py b/commands/package.py index 60d10fb..3a2bef2 100644 --- a/commands/package.py +++ b/commands/package.py @@ -365,8 +365,10 @@ def produce_relative_env_files(config, if src.architecture.is_windows() : src.replace_in_file(filepath, '"out_dir_Path', '"%out_dir_Path%' ) src.replace_in_file(filepath, '=out_dir_Path', '=%out_dir_Path%' ) + src.replace_in_file(filepath, ';out_dir_Path', ';%out_dir_Path%' ) else: src.replace_in_file(filepath, '"out_dir_Path', '"${out_dir_Path}' ) + src.replace_in_file(filepath, ':out_dir_Path', ':${out_dir_Path}' ) # change the rights in order to make the file executable for everybody os.chmod(filepath, -- 2.39.2