Skip to content

Commit

Permalink
test: fix skip in _get-test-directories
Browse files Browse the repository at this point in the history
  • Loading branch information
forivall committed Jun 15, 2016
1 parent a407972 commit 3624461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/_get-test-directories.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ for f in packages/*; do
continue
fi

if [ -n "$TEST_SKIP" ] && [ `basename $f` == "$TEST_SKIP" ]; then
if [ -n "$TEST_SKIP" ] && [ `basename $f` = "$TEST_SKIP" ]; then
continue
fi

Expand Down

0 comments on commit 3624461

Please sign in to comment.