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:
9999# # - name: command
100100# # help: Help subject
101101# #
102- command="${args[command]}"
102+ command="${args[command]:- }"
103103long_usage=yes
104104
105105if [[ -z "$command" ]]; then
Original file line number Diff line number Diff line change @@ -104,8 +104,8 @@ email = value for user.email
104104# Using the standard library (lib/ini.sh) to show a value from the config
105105ini_load config.ini
106106
107- key=" ${args[key]} "
108- value=${ini[$key]}
107+ key=" ${args[key]:- } "
108+ value=${ini[$key]:- }
109109
110110if [[ " $value " ]]; then
111111 echo " $key = $value "
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ x_mandoc_authors: Lana Lang
2626x_mandoc_footer : |-
2727 # ISSUE TRACKER
2828 Report issues at <https://github.com/lanalang/smallville>
29+ x_mandoc_see_also :
30+ - docker
31+ - docker-compose.yml(5)
2932
3033dependencies :
3134 aws-cli : Download from <https://aws.amazon.com/cli/>
@@ -90,13 +93,16 @@ DEPENDENCIES
9093 aws-cli
9194 Download from <https://aws.amazon.com/cli/>
9295
96+ SEE ALSO
97+ docker(1), docker-compose.yml(5)
98+
9399ISSUE TRACKER
94100 Report issues at <https://github.com/lanalang/smallville>
95101
96102AUTHORS
97103 Lana Lang.
98104
99- Version 0.1.0 August 2023 download(1)
105+ Version 0.1.0 November 2023 download(1)
100106
101107
102108````
Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ Overwrite existing files
103103Show debug information
104104
105105# ISSUE TRACKER
106-
107106Report issues at \<https://github.com/lanalang/smallville\>
108107
109108````
You can’t perform that action at this time.
0 commit comments