Skip to content

Commit

Permalink
Avoid Using stat -c on NetBSD
Browse files Browse the repository at this point in the history
Addresses #2493. I think. I don't have a NetBSD system to test on.
  • Loading branch information
felixhandte committed Feb 26, 2021
1 parent aad85f1 commit 221e465
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 221e465

Please sign in to comment.