File tree Expand file tree Collapse file tree 11 files changed +9
-59
lines changed Expand file tree Collapse file tree 11 files changed +9
-59
lines changed Original file line number Diff line number Diff line change 37
37
./bin/doc --ci
38
38
39
39
- name : Setup Pages
40
- uses : actions/configure-pages@v4
40
+ uses : actions/configure-pages@v5
41
41
42
42
- name : Upload artifact
43
43
uses : actions/upload-pages-artifact@v3
Original file line number Diff line number Diff line change 26
26
" manualTests/**" ,
27
27
" pages/doc/**" ,
28
28
" pages/BestPractices.md" ,
29
- " pages/CompileCommand.md" ,
30
29
" pages/Commands.md" ,
31
30
" pages/DockerUsage.md" ,
32
31
" pages/FrameworkDoc.md" ,
Original file line number Diff line number Diff line change 42
42
- mdformat-gfm
43
43
44
44
- repo : https://github.com/pre-commit/pre-commit-hooks
45
- rev : v4.6 .0
45
+ rev : v5.0 .0
46
46
hooks :
47
47
- id : mixed-line-ending
48
48
- id : end-of-file-fixer
80
80
)
81
81
82
82
- repo : https://github.com/rhysd/actionlint
83
- rev : v1.7.2
83
+ rev : v1.7.3
84
84
hooks :
85
85
- id : actionlint
86
86
stages : [pre-commit, pre-push, manual]
@@ -194,6 +194,6 @@ repos:
194
194
stages : [manual] # GITHUB
195
195
196
196
- repo : https://github.com/fchastanet/bash-compiler
197
- rev : v1.1 .0
197
+ rev : v2.0 .0
198
198
hooks :
199
199
- id : buildBashBinaries
Original file line number Diff line number Diff line change 37
37
- mdformat-gfm
38
38
39
39
- repo : https://github.com/pre-commit/pre-commit-hooks
40
- rev : v4.6 .0
40
+ rev : v5.0 .0
41
41
hooks :
42
42
- id : mixed-line-ending
43
43
- id : end-of-file-fixer
75
75
)
76
76
77
77
- repo : https://github.com/rhysd/actionlint
78
- rev : v1.7.2
78
+ rev : v1.7.3
79
79
hooks :
80
80
- id : actionlint
81
81
stages : [pre-commit, pre-push, manual]
@@ -189,6 +189,6 @@ repos:
189
189
stages : [] # GITHUB
190
190
191
191
- repo : https://github.com/fchastanet/bash-compiler
192
- rev : v1.1 .0
192
+ rev : v2.0 .0
193
193
hooks :
194
194
- id : buildBashBinaries
Original file line number Diff line number Diff line change @@ -138,9 +138,6 @@ Here an excerpt of the namespaces available in Bash tools framework:
138
138
management
139
139
- Command::captureOutputAndExitCode calls a command capturing output and exit
140
140
code and displaying it also to error output to follow command's progress
141
- - Compiler : various function used by ` bin/compiler ` script allowing to generate
142
- binaries using the functions of this framework (see
143
- [ Compile command] ( doc/CompileCommand.md ) ).
144
141
- Conf : allows to manage the loading of .env file that contains configuration
145
142
used by some functions of this framework.
146
143
- Database : abstraction of several mysql queries, like:
@@ -156,8 +153,6 @@ Here an excerpt of the namespaces available in Bash tools framework:
156
153
- Dns : various methods like Dns::pingHost or allowing etc/hosts manipulation.
157
154
- Docker : various docker cli abstractions that allowed to construct
158
155
` bin/buildPushDockerImage ` command.
159
- - Embed : functions that allows ` bin/compiler ` to manage ` EMBED directives ` (see
160
- [ Compile command] ( doc/CompileCommand.md ) ).
161
156
- Env : functions allowing to load env variables or to alter them like
162
157
Env::pathAppend allowing to add a bin path to ` PATH ` variable
163
158
- File : files and file paths manipulations.
Original file line number Diff line number Diff line change @@ -1656,8 +1656,6 @@ plantumlCommandHelp() {
1656
1656
echo " Possible values: "
1657
1657
echo -e " - ${__OPTION_COLOR} svg${__RESET_COLOR} "
1658
1658
echo -e " - ${__OPTION_COLOR} png${__RESET_COLOR} "
1659
- Array::wrap2 ' ' 76 6 " Default value: " " png"
1660
- echo
1661
1659
1662
1660
echo -e " ${__HELP_OPTION_COLOR} --limit-size${__HELP_NORMAL} , ${__HELP_OPTION_COLOR} -l <LimitSize>${__HELP_NORMAL} {single}"
1663
1661
Array::wrap2 ' ' 76 4 " " " Define PLANTUML_LIMIT_SIZE" " use plantuml software default size if not provided" " "
Original file line number Diff line number Diff line change @@ -1441,7 +1441,6 @@ shellcheckLintCommandParse() {
1441
1441
# Option 16/16
1442
1442
# optionXargs alts --xargs
1443
1443
# type: Boolean min 0 max 1
1444
- # authorizedValues: checkstyle|diff
1445
1444
--xargs)
1446
1445
# shellcheck disable=SC2034
1447
1446
optionXargs=" 1"
@@ -1627,7 +1626,7 @@ shellcheckLintCommandHelp() {
1627
1626
echo
1628
1627
1629
1628
echo
1630
- echo -e " ${__HELP_TITLE_COLOR} OPTIONS:${__RESET_COLOR} "
1629
+ echo -e " ${__HELP_TITLE_COLOR} SPECIFIC OPTIONS:${__RESET_COLOR} "
1631
1630
echo -e " ${__HELP_OPTION_COLOR} --format${__HELP_NORMAL} , ${__HELP_OPTION_COLOR} -f <format>${__HELP_NORMAL} {single}"
1632
1631
Array::wrap2 ' ' 76 4 " " " define output format of this command"
1633
1632
echo
@@ -1652,9 +1651,6 @@ shellcheckLintCommandHelp() {
1652
1651
Array::wrap2 ' ' 76 4 " " " uses parallelization(using xargs command) only if tty format"
1653
1652
echo
1654
1653
1655
- echo " Possible values: "
1656
- echo -e " - ${__OPTION_COLOR} checkstyle${__RESET_COLOR} "
1657
- echo -e " - ${__OPTION_COLOR} diff${__RESET_COLOR} "
1658
1654
# ------------------------------------------
1659
1655
# longDescription section
1660
1656
# ------------------------------------------
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
- [ Home - Bash Tools Framework] ( / " Bash Tools Framework ")
4
4
- [ Framework guides] ( doc/FrameworkGuidesIndex.md " explaining some main framework features ")
5
- - [ Compile Command] ( doc/CompileCommand.md " compile your sh files as one file ")
6
5
- [ Commands] ( Commands.md " The greatest commands in the world ")
7
6
- [ Framework Full Documentation] ( FrameworkIndex.md " Bash Tools Framework documentation ")
8
7
- [ Bash Best Practices & Recipes] ( doc/BestPractices.md )
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ binData:
44
44
authorizedValues :
45
45
- value : svg
46
46
- value : png
47
- defaultValue : png
48
47
max : -1
49
48
min : 0
50
49
helpValueName : Format
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ binData:
48
48
variableName : argShellcheckFiles
49
49
optionGroups :
50
50
shellcheckLintOptionGroup :
51
- title : " OPTIONS:"
51
+ title : " SPECIFIC OPTIONS:"
52
52
options :
53
53
- alts :
54
54
- --format
@@ -78,9 +78,6 @@ binData:
78
78
79
79
- alts :
80
80
- --xargs
81
- authorizedValues :
82
- - value : checkstyle
83
- - value : diff
84
81
group : shellcheckLintOptionGroup
85
82
help : uses parallelization(using xargs command) only if tty format
86
83
type : Boolean
You can’t perform that action at this time.
0 commit comments