File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ commands:
99
99
# # - name: command
100
100
# # help: Help subject
101
101
# #
102
- command="${args[command]}"
102
+ command="${args[command]:- }"
103
103
long_usage=yes
104
104
105
105
if [[ -z "$command" ]]; then
Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ email = value for user.email
104
104
# Using the standard library (lib/ini.sh) to show a value from the config
105
105
ini_load config.ini
106
106
107
- key=" ${args[key]} "
108
- value=${ini[$key]}
107
+ key=" ${args[key]:- } "
108
+ value=${ini[$key]:- }
109
109
110
110
if [[ " $value " ]]; then
111
111
echo " $key = $value "
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ x_mandoc_authors: Lana Lang
26
26
x_mandoc_footer : |-
27
27
# ISSUE TRACKER
28
28
Report issues at <https://github.com/lanalang/smallville>
29
+ x_mandoc_see_also :
30
+ - docker
31
+ - docker-compose.yml(5)
29
32
30
33
dependencies :
31
34
aws-cli : Download from <https://aws.amazon.com/cli/>
@@ -90,13 +93,16 @@ DEPENDENCIES
90
93
aws-cli
91
94
Download from <https://aws.amazon.com/cli/>
92
95
96
+ SEE ALSO
97
+ docker(1), docker-compose.yml(5)
98
+
93
99
ISSUE TRACKER
94
100
Report issues at <https://github.com/lanalang/smallville>
95
101
96
102
AUTHORS
97
103
Lana Lang.
98
104
99
- Version 0.1.0 August 2023 download(1)
105
+ Version 0.1.0 November 2023 download(1)
100
106
101
107
102
108
````
Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ Overwrite existing files
103
103
Show debug information
104
104
105
105
# ISSUE TRACKER
106
-
107
106
Report issues at \<https://github.com/lanalang/smallville\>
108
107
109
108
````
You can’t perform that action at this time.
0 commit comments