Files
pkgmgr/.dockerignore
Kevin Veen-Birkenbach 7775c6d974 Refine packaging layout and Arch build paths
* Move Arch-specific ignore rules into `packaging/arch/.gitignore` and simplify top-level `.gitignore`/`.dockerignore`.
* Update Arch `PKGBUILD` to sync from the project root and drop `packaging/` from the installed tree.
* Fix OS-specific `package.sh` helpers to resolve the new `packaging/*` locations correctly for Arch, Debian/Ubuntu, Fedora, and CentOS.
2025-12-11 09:04:17 +01:00

29 lines
251 B
Plaintext

# Docker build context cleanup
# Nix local store/cache
.nix/
# Git internals
.git
.gitignore
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
# venvs
.venv/
venv/
.venvs/
# Editor/OS noise
.vscode/
.idea/
.DS_Store
Thumbs.db
# Logs
*.log