Skip to content

Commit

Permalink
Merge pull request #2513 from felixhandte/fix-2493
Browse files Browse the repository at this point in the history
Avoid Using `stat -c` on NetBSD
  • Loading branch information
felixhandte authored Feb 26, 2021
2 parents 45ee23f + 221e465 commit aec1e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/playTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ esac

MTIME="stat -c %Y"
case "$UNAME" in
Darwin | FreeBSD | OpenBSD) MTIME="stat -f %m" ;;
Darwin | FreeBSD | OpenBSD | NetBSD) MTIME="stat -f %m" ;;
esac

DIFF="diff"
Expand Down

0 comments on commit aec1e8c

Please sign in to comment.