clydeshaffer / gametank_sdk

Copy this repository to get started on your own GameTank game!
4 stars 4 forks source link

Uses uname to detect OS for `find` path. #4

Closed wasv closed 1 year ago

wasv commented 1 year ago

Commit 054bfa1 introduced an issue when building on Linux. The Makefile would expect the find command to be at /bin/find, which isn't always the case on Linux. I've changed find to be a variable that defaults to find unless on Windows, in which case it will use /bin/find.