Skip to content

Commit 8bcedb4

Browse files
authored
Merge branch 'dev' into dev
2 parents 0a65679 + 678833b commit 8bcedb4

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

docs/make-docs

+17-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66
# [Semantic versioning](https://semver.org/) is used to help the reader identify the significance of changes.
77
# Changes are relevant to this script and the support docs.mk GNU Make interface.
88
#
9+
# ## 8.3.0 (2024-12-27)
10+
#
11+
# ### Added
12+
#
13+
# - Debug output of the final command when DEBUG=true.
14+
#
15+
# Useful to inspect if the script is correctly constructing the final command.
16+
#
917
# ## 8.2.0 (2024-12-22)
1018
#
1119
# ### Removed
@@ -631,7 +639,7 @@ POSIX_HERESTRING
631639

632640
case "${_project}" in
633641
# Workaround for arbitrary mounts where the version field is expected to be the local directory
634-
# and the repo field is expected to be the container directory.
642+
# and the repo field is expected to be the container directory.
635643
arbitrary)
636644
echo "${_project}^${_version}^${_repo}^" # TODO
637645
;;
@@ -801,6 +809,10 @@ case "${image}" in
801809
| sed "s#$(proj_dst "${proj}")#sources#"
802810
EOF
803811

812+
if [ -n "${DEBUG}" ]; then
813+
debg "${cmd}"
814+
fi
815+
804816
case "${OUTPUT_FORMAT}" in
805817
human)
806818
if ! command -v jq >/dev/null 2>&1; then
@@ -837,6 +849,10 @@ EOF
837849
/hugo/content/docs
838850
EOF
839851

852+
if [ -n "${DEBUG}" ]; then
853+
debg "${cmd}"
854+
fi
855+
840856
case "${OUTPUT_FORMAT}" in
841857
human)
842858
${cmd} --output=line \

0 commit comments

Comments
 (0)