Update exclude executables script
This commit is contained in:
parent
2f18fb4e70
commit
b49738e244
|
@ -3,3 +3,4 @@ lexical/example
|
|||
lexical/flux
|
||||
lexical/string
|
||||
*.c
|
||||
*.o
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/bin/sh
|
||||
find . -perm /111 -type f | sed 's#^./##' | sort > .gitignore
|
||||
find . -perm /111 -type f -not -path "./.git/*" | sed 's#^./##' | sort > .gitignore
|
||||
echo "*.c" >> .gitignore
|
||||
echo "*.o" >> .gitignore
|
||||
|
|
Loading…
Reference in New Issue