Compare commits
2 Commits
b6ade8c31a
...
7e7d05cfdc
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e7d05cfdc | |||
| 2bbabeb9ee |
@@ -1 +1 @@
|
|||||||
2.3.3
|
2.3.4
|
||||||
@@ -1,3 +1,7 @@
|
|||||||
|
## 2.3.4
|
||||||
|
+ fixed failing if `./project.user.config.default` do not exist
|
||||||
|
+ fixed `WARN_CPP`
|
||||||
|
|
||||||
## 2.3.3
|
## 2.3.3
|
||||||
+ now all default build dasks delete out file before building new one
|
+ now all default build dasks delete out file before building new one
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
INSTALLED_CBUILD_VERSION=2.3.3
|
INSTALLED_CBUILD_VERSION=2.3.4
|
||||||
|
|
||||||
# set \t size to 4 spaces
|
# set \t size to 4 spaces
|
||||||
tabs 4
|
tabs 4
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ function load_config {
|
|||||||
|
|
||||||
# load project user config
|
# load project user config
|
||||||
local proj_conf_user_file="$proj_conf_file.user"
|
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"
|
file_copy_default_if_not_present "$proj_conf_user_file" "$proj_conf_user_file.default"
|
||||||
myprint "${BLUE}loading ${WHITE}'$proj_conf_user_file'"
|
myprint "${BLUE}loading ${WHITE}'$proj_conf_user_file'"
|
||||||
# throw error on undefined variable usage
|
# throw error on undefined variable usage
|
||||||
@@ -26,6 +27,7 @@ function load_config {
|
|||||||
include "$proj_conf_user_file"
|
include "$proj_conf_user_file"
|
||||||
# don't throw error on undefined variable usage
|
# don't throw error on undefined variable usage
|
||||||
set +u
|
set +u
|
||||||
|
fi
|
||||||
|
|
||||||
myprint "${BLUE}loading ${WHITE}'$proj_conf_file'"
|
myprint "${BLUE}loading ${WHITE}'$proj_conf_file'"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
CBUILD_VERSION=2.3.3
|
CBUILD_VERSION=2.3.4
|
||||||
|
|
||||||
PROJECT="%PROJECT_NAME%"
|
PROJECT="%PROJECT_NAME%"
|
||||||
CMP_C="gcc"
|
CMP_C="gcc"
|
||||||
|
|||||||
Reference in New Issue
Block a user