Update exclude executables script
This commit is contained in:
parent
2f18fb4e70
commit
b49738e244
|
@ -3,3 +3,4 @@ lexical/example
|
||||||
lexical/flux
|
lexical/flux
|
||||||
lexical/string
|
lexical/string
|
||||||
*.c
|
*.c
|
||||||
|
*.o
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
#!/bin/sh
|
#!/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 "*.c" >> .gitignore
|
||||||
|
echo "*.o" >> .gitignore
|
||||||
|
|
Loading…
Reference in New Issue