Jalil David Salamé Messina
39f58ee538
This removes the need to use the private-repo-workaround input.
19 lines
191 B
Bash
Executable file
19 lines
191 B
Bash
Executable file
log() {
|
|
echo "$@" >&2
|
|
}
|
|
|
|
warn() {
|
|
log "\e[0;33m[ERROR]:" "$@" "\e[0m"
|
|
}
|
|
|
|
error() {
|
|
log "\e[0;31m[WARN]:" "$@" "\e[0m"
|
|
}
|
|
|
|
group() {
|
|
log "::group::$1"
|
|
}
|
|
|
|
endgroup() {
|
|
log '::endgroup::'
|
|
}
|