Skip to content

Commit 56ae512

Browse files
author
Caspar van Leeuwen
committed
Print the durations to stdout at teh end of the script
1 parent 7cc477f commit 56ae512

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scripts/generate_easystacks_for_existing_stack/json_to_easystacks_split_by_duration.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,9 @@ if [[ ${current_stack_name} != "" ]]; then
4343
{ echo "# ${current_stack_name}: total build duration = ${current_duration_sum} minutes"; cat "${easystack}"; } > temp && mv temp "${easystack}"
4444
fi
4545

46+
for file in *.yml; do
47+
cat "$file" | head -n 1
48+
done
49+
4650
# Print overall total
4751
echo "Overall total build duration = ${total_duration_sum} minutes"

0 commit comments

Comments
 (0)