Skip to content

Commit 88f4bcf

Browse files
TidosDKJKrag
authored andcommitted
Fixed bug in bisect verify.sh
1 parent 996a3bd commit 88f4bcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bisect/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/env sh
22

33
cd exercise
4-
if [[ "$(git log -1 --format='%s' refs/bisect/bad -- )" = '22' ]] ; then
4+
if [ "$(git log -1 --format='%s' refs/bisect/bad -- )" = '22' ] ; then
55
echo "You managed to find the bad commit with bisect"
66
else
77
echo "You have still stuff to do"

0 commit comments

Comments
 (0)