We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86bfeed commit a80f8a8Copy full SHA for a80f8a8
scripts/retire.sh
@@ -61,7 +61,7 @@ for login in *; do
61
# Figure out when this person received the commit bit
62
# Get the unix epoch of the first commit that touched this file
63
# --first-parent is important to get the time of when the main branch was changed
64
- fileCommitEpoch=$(git log --reverse --first-parent --format=%cd --date=unix -- "$login" | head -1)
+ fileCommitEpoch=$(git log --reverse --first-parent --format=%cd --date=unix -- "$login" | head -1 || true)
65
if (( fileCommitEpoch < createdOnReceptionEpoch )); then
66
# If it was created before creation actually matched the reception date
67
# This branch can be removed after 2026-04-23
0 commit comments