├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── asgen-config-ubuntu.json ├── asgen-config.json ├── check.py ├── sync └── sync-ubuntu /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /db 3 | /export 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/README.md -------------------------------------------------------------------------------- /asgen-config-ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/asgen-config-ubuntu.json -------------------------------------------------------------------------------- /asgen-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/asgen-config.json -------------------------------------------------------------------------------- /check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/check.py -------------------------------------------------------------------------------- /sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/sync -------------------------------------------------------------------------------- /sync-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/repo-release/HEAD/sync-ubuntu --------------------------------------------------------------------------------