Add a .gitignore in build/ directory so we guarantee a build/ file exists

This commit is contained in:
Jonn 2022-02-18 22:25:17 +09:00
parent df405130d1
commit 00cdce49ea
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
# Compiled class file # Compiled class file
*.class *.class
build/
# Log file # Log file
*.log *.log

3
build/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Ignore everything in this directory, but Ant will complain if we don't have a build/ directory, so leave this .gitignore as a placeholder.
*
!.gitignore