summaryrefslogtreecommitdiffstats
path: root/build/msg-if.sh
blob: 8112aea7ea2c038211cee4e47bfa942f835d4280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

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

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

set -eu

MSG="$1"
shift

if "$@"; then
    build/msg.sh "$(printf '%-37s  ✔' "$MSG")"
else
    build/msg.sh "$(printf '%-37s  ✘' "$MSG")"
fi