diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-09-18 07:08:59 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-09-18 07:08:59 -0400 |
| commit | 21a3dcab4ff0778e21b52de18812c341271cbdab (patch) | |
| tree | 08bed242e2c09e0f11e1e9d9044f22e1322fd0ac /admin | |
| parent | 9672b90e9e3390406d525e77aa8615ae7f540043 (diff) | |
| download | sbostuff-21a3dcab4ff0778e21b52de18812c341271cbdab.tar.gz | |
sbols: detect invalid -i and -o/-m combo.
Diffstat (limited to 'admin')
| -rwxr-xr-x | admin/sbols | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/admin/sbols b/admin/sbols index c65406e..d5825c0 100755 --- a/admin/sbols +++ b/admin/sbols @@ -89,6 +89,7 @@ if [ "$opt_o" = "1" ]; then fi if [ "$opt_m" = "1" ]; then + [ "$opt_i" != "" ] && die "-i option not compatible with -m or -o" cdsb builds="$( git grep -l "$*" '*/*/*.info' | cut -d/ -f1,2 )" [ "$builds" = "" ] && die "maintainer '$*' not found" |
