From a39afedbdefc08bfb2b6af53e8a0bd0befe14a5c Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Thu, 11 Jul 2019 15:20:03 +0300 Subject: [PATCH] set order of patches being applied --- ctcci/ctcci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctcci/ctcci.py b/ctcci/ctcci.py index d380079..de06973 100644 --- a/ctcci/ctcci.py +++ b/ctcci/ctcci.py @@ -58,7 +58,7 @@ OUTPUT_FILE = os.path.join(RESULT_FOLDER, # Add necessary patches to the list of patches that will be applied # Important to have this after the output file name generation # otherwise it'll include it, which is not wanted -PATCHES += DEFAULT_PATCHES +PATCHES = DEFAULT_PATCHES + PATCHES print(f"Branch: {BRANCH}, output name: {OUTPUT_FILE}")