Skip to content

Commit 0608e70

Browse files
committed
ssb: Look back off of readback_time
I manually verified that git log handles this date format. For now, that's all the testing we really need.
1 parent 29d3956 commit 0608e70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/should-skip-build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ end
129129
def anything_changed_yesterday?
130130
head_time = Commit.HEAD.time
131131
readback_time = head_time - 26.hours
132-
yesterdays_changes = changes_after('26 hours ago').unique_lines
132+
133+
yesterdays_changes = changes_after(readback_time.iso8601).unique_lines
133134

134135
yesterdays_changes.count > 0
135136
end

0 commit comments

Comments
 (0)