historical/interjection.sh.git/CONTRIBUTING.md
2024-01-16 11:20:27 -06:00

581 B

Contributing to interjection.sh

I'm glad you're interested in contributing! 🎉 🎉 🎉

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:

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! :)