`/__pycache__/*` only covered the root level. Replace with `**/__pycache__/` so that generated bytecode directories in lib/tools/ and elsewhere are ignored. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
550 B
Plaintext
33 lines
550 B
Plaintext
### Specific to building Armbian ###
|
|
/.vagrant/
|
|
ubuntu-*-cloudimg-console.log
|
|
|
|
### to ignore changes in a working copy
|
|
.ignore_changes
|
|
|
|
### compile configurations added by users
|
|
/config-*.conf
|
|
### but not default (supplied) files
|
|
!/config-docker.conf
|
|
!/config-vagrant.conf
|
|
|
|
### output directories
|
|
/.tmp/
|
|
/output/
|
|
/cache/
|
|
/*userpatches*/
|
|
/userpatches
|
|
|
|
### General annoyances ###
|
|
.DS_Store
|
|
*~
|
|
*.swp
|
|
**/__pycache__/
|
|
|
|
# Mainly generated by merge tools like 'meld'
|
|
*.orig
|
|
|
|
# Dockerfile and .dockerignore is generated by docker.sh
|
|
Dockerfile
|
|
.dockerignore
|