Make colors work!

This commit is contained in:
2021-12-20 20:51:18 -08:00
parent d0c783a421
commit e8bc9f0655
3 changed files with 83 additions and 1 deletions

View File

@@ -5,4 +5,43 @@
echo Hello, world!
}
build() {
_help-line "Build an incredible script" "$@"
echo "echo hi" > .generated/potato
chmod +x .generated/potato
}
run() {
_help-line "Run the script" "$@"
build
.generated/potato "$@"
}
check() {
_help-line "Verify the script passes shellcheck" "$@"
build
shellcheck .generated/potato
}
test() {
_help-line "Test output of the script" "$@"
build
[ "$(.generated/potato)" == "hi" ]
}
clean() {
_help-line "Delete generated GARBAGE" "$@"
rm -rf .generated
}
good() {
_help-line "Show a nice message for something nice happening" "$@"
_good-message + Good Message
}
bad() {
_help-line "Show a bad message for something bad happening" "$@"
_bad-message - Bad Message
}
source ⚡️