Compare commits

...

2 Commits

Author SHA1 Message Date
596c570756 v2.2.2 2025-04-26 03:58:53 +05:00
1c93d4eb73 bootstrap can show help for cbuild installations again 2025-04-26 03:57:09 +05:00
5 changed files with 8 additions and 5 deletions

View File

@ -1 +1 @@
2.2.1
2.2.2

View File

@ -1,3 +1,7 @@
## 2.2.2
+ `bootstrap.sh` can show help for cbuild installations again
+ copy dependency out files only if they are newer or don't exist
## 2.2.1
+ updated `bootsrap.sh` to 1.0.2

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
CBUILD_BOOTSTRAP_VERSION=1.0.2
CBUILD_BOOTSTRAP_VERSION=1.0.3
set -eo pipefail
function version_parse {
@ -75,7 +75,6 @@ do
;;
'-h' | '--help')
print_help
exit 0
;;
'-c' | '--config')
i=$((i+1))

View File

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

View File

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