summaryrefslogtreecommitdiffstats
path: root/util/what-architecture-am-i-using
blob: 80841ff7c0c6c1b0d4b75365d97ccf274a0cb87c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# See LICENSE file for copyright and license details.

dir="$(dirname -- "$0")"

for cmd in "$dir"/../*/what-architecture-am-i-using; do
	if printf '%s\n' "$cmd" | grep '/util/what-architecture-am-i-using$' > /dev/null; then
		continue
	fi
	"$cmd" "$@"
	status=$?
	if test $status = 0; then
		exit 0
	elif test $status = 1; then	    
		printf '%s\n' 'Architecture not recognised' >&2
		printf 'UNRECOGNISED\n'
		exit 1
	fi
done

printf '%s\n' 'Operating system not recognised' >&2
printf 'UNRECOGNISED\n'
exit 2