File: msg-if.sh

package info (click to toggle)
bfs 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,484 kB
  • sloc: ansic: 21,302; sh: 3,227; makefile: 221
file content (31 lines) | stat: -rwxr-xr-x 527 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

# Copyright © Tavian Barnes <tavianator@tavianator.com>
# SPDX-License-Identifier: 0BSD

# Print a success/failure indicator from a makefile:
#
#     $ ./configure
#     [ CC ] with/liburing.c                 ✘
#     [ CC ] with/oniguruma.c                ✔

set -eu

MSG="$1"
shift

if [ -z "${NO_COLOR:-}" ] && [ -t 1 ]; then
    Y='\033[1;32m✔\033[0m'
    N='\033[1;31m✘\033[0m'
else
    Y='✔'
    N='✘'
fi

if "$@"; then
    YN="$Y"
else
    YN="$N"
fi

build/msg.sh "$(printf "%-37s  $YN" "$MSG")"