├── .github ├── code_of_conduct.md └── issue_template.md ├── .gitignore ├── LICENSE ├── README.md └── update_ombi.sh /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unimatrix0/update_ombi/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unimatrix0/update_ombi/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | update_ombi.conf 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unimatrix0/update_ombi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unimatrix0/update_ombi/HEAD/README.md -------------------------------------------------------------------------------- /update_ombi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unimatrix0/update_ombi/HEAD/update_ombi.sh --------------------------------------------------------------------------------