|
#!/bin/bash |
|
# 831c9c489ef90134436449b5c732f93f0a0b29bb can use quotes in :eq(...) |
|
# 4674e7ed7f0f19bcbaaf7710ba256db374c0dd9b [random point in the past] cannot use quotes in :eq(...) |
|
# Trying to find first commit in which quotes can be used in :eq(...) |
|
|
|
git bisect start 831c9c489ef90134436449b5c732f93f0a0b29bb 4674e7ed7f0f19bcbaaf7710ba256db374c0dd9b |
|
git bisect run "$(dirname "$0")/bisect.js" |
|
|
|
# the result was af8206ff677909e61aec0158443ff74263e6265b |
|
# however, the parent of af8206ff677909e61aec0158443ff74263e6265b does not fail silently |
|
# At what point did we go from "silently failing" to "explicitly not working" prior to "working"? |
|
|
|
git bisect reset |
|
git bisect start af8206ff677909e61aec0158443ff74263e6265b^ 4674e7ed7f0f19bcbaaf7710ba256db374c0dd9b |
|
git bisect run "$(dirname "$0")/bisect2.js" |
|
|
|
# the result was e89d06c4134ec439e52382acd0e569e97fed7ebc |