File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 6
6
# [Semantic versioning](https://semver.org/) is used to help the reader identify the significance of changes.
7
7
# Changes are relevant to this script and the support docs.mk GNU Make interface.
8
8
#
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
+ #
9
17
# ## 8.2.0 (2024-12-22)
10
18
#
11
19
# ### Removed
@@ -631,7 +639,7 @@ POSIX_HERESTRING
631
639
632
640
case " ${_project} " in
633
641
# 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.
635
643
arbitrary)
636
644
echo " ${_project} ^${_version} ^${_repo} ^" # TODO
637
645
;;
@@ -801,6 +809,10 @@ case "${image}" in
801
809
| sed "s#$( proj_dst " ${proj} " ) #sources#"
802
810
EOF
803
811
812
+ if [ -n " ${DEBUG} " ]; then
813
+ debg " ${cmd} "
814
+ fi
815
+
804
816
case " ${OUTPUT_FORMAT} " in
805
817
human)
806
818
if ! command -v jq > /dev/null 2>&1 ; then
837
849
/hugo/content/docs
838
850
EOF
839
851
852
+ if [ -n " ${DEBUG} " ]; then
853
+ debg " ${cmd} "
854
+ fi
855
+
840
856
case " ${OUTPUT_FORMAT} " in
841
857
human)
842
858
${cmd} --output=line \
You can’t perform that action at this time.
0 commit comments