mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-10 19:50:30 +00:00
* fix: unit tests were very broken Co-authored-by: toast-gear <toast-gear@users.noreply.github.com>
19 lines
277 B
Bash
Executable File
19 lines
277 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export LIGHTGREEN='\e[0;32m'
|
|
export LIGHTRED='\e[0;31m'
|
|
export WHITE='\e[0;97m'
|
|
export RESET='\e[0m'
|
|
|
|
log(){
|
|
printf "${WHITE}$@${RESET}\n" 2>&1
|
|
}
|
|
|
|
success(){
|
|
printf "${LIGHTGREEN}$@${RESET}\n" 2>&1
|
|
}
|
|
|
|
error(){
|
|
printf "${LIGHTRED}$@${RESET}\n" 2>&1
|
|
}
|