switch_to_good.sh revision 3b0ea76081a892ad757b65db753e739b2362ecd2
1#!/bin/bash -u
2
3source common/common.sh
4
5# Remove file, signaling to emerge that it needs to be rebuilt. The compiler
6# wrapper will insert the correct object file based on $BISECT_GOOD_SET
7cat $1 | sudo xargs rm -f
8
9exit 0
10