From 1189b8ba4af9eb07c76251e783fa803730506058 Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 29 Jul 2026 16:24:22 +0300 Subject: [PATCH] Better config logging --- DevTools/Build_Project.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DevTools/Build_Project.py b/DevTools/Build_Project.py index db2aa55..fc4918d 100644 --- a/DevTools/Build_Project.py +++ b/DevTools/Build_Project.py @@ -245,9 +245,9 @@ sll.log("Checking required source tree") bundle_dualroot() sll.log("Continuing from BuildConfig ...") -if BuildConfig.Include_Init_dir: copy_init_dir() -if BuildConfig.Include_JiboPackageManager: git_pull_jpm() -if BuildConfig.Include_JiboBinaryWrappers: git_pull_jibo_wrappers() +copy_init_dir() if BuildConfig.Include_Init_dir else sll.warn("Config : Not Including init dir replacement!") +git_pull_jpm() if BuildConfig.Include_JiboPackageManager else sll.warn("Config : Not Including Jibo Package Manager!") +git_pull_jibo_wrappers() if BuildConfig.Include_JiboBinaryWrappers else sll.warn("Config : Not Including Jibo Binary Wrappers!")