Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,10 @@ while read issue; do
else
echo "[Should these errors be fixed?|https://moodledev.io/general/development/tools/cibot#should-coding-style-issues-in-existing-code-be-fixed]" >> "${resultfile}.${issue}.txt"
fi

# Add build timestamp to the bottom of the report
echo "" >> "${resultfile}.${issue}.txt"
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"

# Execute the criteria postissue. It will perform the needed changes in the tracker for the current issue
if [[ ${quiet} == "false" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ while read issue; do
rm "${resultfile}.jenkinscli"
fi
done
echo "Built on: $(date -u)" >> "${resultfile}.${issue}.txt"

# Add build timestamp to the bottom of the report
echo "Built on: $(date -u '+%a %b %e %H:%M:%S %Z %Y')" >> "${resultfile}.${issue}.txt"

echo ""
# Verify we have processed some branch.
Expand Down
Loading