Skip to content

Commit

Permalink
Merge pull request ethereum#12348 from dallonasnes/fix-cut-on-macos
Browse files Browse the repository at this point in the history
Fix cl test script on macOS
  • Loading branch information
chriseth authored Dec 1, 2021
2 parents c04fca7 + 70e925d commit 5a908a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/cmdlineTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ do
shift
;;
*)
matching_tests=$(find . -mindepth 1 -maxdepth 1 -type d -name "$1" | cut --characters 3- | sort)
matching_tests=$(find . -mindepth 1 -maxdepth 1 -type d -name "$1" | cut -c 3- | sort)


if [[ $matching_tests == "" ]]
then
Expand Down

0 comments on commit 5a908a8

Please sign in to comment.