Hello again, Just a quick feedback on the bisect script: Tim Gesthuizen writes: > #!/bin/sh > > cd $HOME/src/guix/build > (cd ..; ./bootstrap) || exit 125 > (../configure --localstatedir=/var && make -j8) || exit 125 > PATH=$(./pre-inst-env guix build teeworlds | grep /gnu/store | tail -n 1) || exit 125 > $PATH/bin/teeworlds || exit 1 I suggest not running "./bootstrap" and "./configure" in between runs. "make" will invoke ./configure (with current parameters) if necessary. Then it can be reduced to a two-liner: