summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTommi Sinivuo <[email protected]>2021-08-11 12:56:05 +0300
committerGitHub <[email protected]>2021-08-11 11:56:05 +0200
commit0ba49cce45405a688f7e7893e203f7d3f0bc780c (patch)
tree461edde39c2ee5f2f851ef03fcaf434e14e78fff
parentb54422c97076c600f47a827cdce2ab7e5eca8933 (diff)
downloadraylib-0ba49cce45405a688f7e7893e203f7d3f0bc780c.tar.gz
raylib-0ba49cce45405a688f7e7893e203f7d3f0bc780c.zip
Add *.so.* to .gitignore to ignore build artifacts (#1912)
When building a shared Raylib library on Linux, the build process produces 3 files: libraylib.so (symlink), libraylib.so.381 (symlink) and libraylib.so.3.8.1 (the library). Only the first one of these (.so) is currently ignored by Git. Adding *.so.* to .gitinore makes Git ignore the rest of them as well.
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 00c9bdce..dcfa5bce 100644
--- a/.gitignore
+++ b/.gitignore
@@ -57,6 +57,7 @@ packages/
*.a
*.bc
*.so
+*.so.*
# Ignore wasm data in examples/
examples/**/*.wasm