Skip to content

Commit

Permalink
Fixed bug in bisect verify.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
TidosDK committed Aug 7, 2024
1 parent ef188b5 commit 8bf583a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bisect/verify.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env sh

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

0 comments on commit 8bf583a

Please sign in to comment.