Merged colors.sh with functions.sh, moved to separate 'includes' directory
This commit is contained in:
parent
c84085236d
commit
ac4da0bab7
2 changed files with 5 additions and 8 deletions
|
|
@ -1,6 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Common utility functions shared across multiple files.
|
# Common utility functions shared across multiple files.
|
||||||
source colors.sh
|
|
||||||
|
RESET="\033[0m"
|
||||||
|
GREEN="\033[1;32m"
|
||||||
|
YELLOW="\033[1;33m"
|
||||||
|
RED="\033[1;31m"
|
||||||
|
|
||||||
check_dependencies() {
|
check_dependencies() {
|
||||||
# Usage: check_dependencies "7z" "unrar" "curl" ...
|
# Usage: check_dependencies "7z" "unrar" "curl" ...
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# Color variables for logging.
|
|
||||||
|
|
||||||
RESET="\033[0m"
|
|
||||||
GREEN="\033[1;32m"
|
|
||||||
YELLOW="\033[1;33m"
|
|
||||||
RED="\033[1;31m"
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue