Skip to content

Document how to use every-ts bisect run to look for a commit that *fixed* an issue #51

@danvk

Description

@danvk

The docs explain how to use every-ts bisect run to find the commit that broke something, but sometimes you want to find the commit that fixed an issue.

Case in point: I tried to repro #33191 at HEAD today and couldn't. It was fixed sometime after 5.3.2.

I wound up doing it with this script that flips the exit codes. But maybe there's a better way that doesn't require that.

#!/bin/bash

if every-ts tsc -p tsconfig.json ; then
  echo 'good'
  exit 1
else
  echo 'bad'
  exit 0
fi

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions