wp-content

wordpress/hph
Log | Files | Refs | README | LICENSE

commit ba902b6a2d3540b4a1835fc7a31a7167f472311c
parent 1c37c82eb4e90b8e8032b06f5107ca428cc94788
Author: Sean Enck <sean@ttypty.com>
Date:   Sun,  2 Nov 2025 14:33:05 -0500

display the generated output name

Diffstat:
Mplugins/hphp/utils/data-counter-table-generator | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/plugins/hphp/utils/data-counter-table-generator b/plugins/hphp/utils/data-counter-table-generator @@ -3,6 +3,7 @@ [ ! -e "$1" ] && echo "file does not exist" && exit 1 TARGET="target" mkdir -p "$TARGET" +TABLES="$TARGET/data-counter-tables.html" { cat << EOF @@ -65,4 +66,6 @@ EOF hphpInit() </script> EOF -} > "$TARGET/table.html" +} > "$TABLES" + +echo "generated: $TABLES"