Compare commits

2 Commits

Author SHA1 Message Date
7e7d05cfdc v2.3.4 2026-06-07 16:53:13 +05:00
2bbabeb9ee fixed failing if project.user.config.default do not exist 2026-06-07 16:51:38 +05:00
5 changed files with 16 additions and 10 deletions

View File

@@ -1 +1 @@
2.3.3
2.3.4

View File

@@ -1,3 +1,7 @@
## 2.3.4
+ fixed failing if `./project.user.config.default` do not exist
+ fixed `WARN_CPP`
## 2.3.3
+ now all default build dasks delete out file before building new one

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash
INSTALLED_CBUILD_VERSION=2.3.3
INSTALLED_CBUILD_VERSION=2.3.4
# set \t size to 4 spaces
tabs 4

View File

@@ -19,6 +19,7 @@ function load_config {
# load project user config
local proj_conf_user_file="$proj_conf_file.user"
if [ -f "$proj_conf_user_file.default" ]; then
file_copy_default_if_not_present "$proj_conf_user_file" "$proj_conf_user_file.default"
myprint "${BLUE}loading ${WHITE}'$proj_conf_user_file'"
# throw error on undefined variable usage
@@ -26,6 +27,7 @@ function load_config {
include "$proj_conf_user_file"
# don't throw error on undefined variable usage
set +u
fi
myprint "${BLUE}loading ${WHITE}'$proj_conf_file'"

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash
CBUILD_VERSION=2.3.3
CBUILD_VERSION=2.3.4
PROJECT="%PROJECT_NAME%"
CMP_C="gcc"