historical/interjection.sh.git/CONTRIBUTING.md

16 lines
581 B
Markdown
Raw Normal View History

2024-01-16 11:20:27 -06:00
# Contributing to interjection.sh
I'm glad you're interested in contributing! :tada: :tada: :tada:
Chances are, you're trying to add support for a new package management system. You'll want to add an appropriate `if` block to the package manager detection and package output text processing logic in `interjection.sh`:
```sh
if command -v your-package-manager > /dev/null 2>&1; then
PACKAGES="$PACKAGES$(your-logic-here)"
fi
```
Don't forget to edit the `README` by adding a new bullet point under "Supported Package Management Systems"!
Thanks again for your efforts! :)