blob: 80841ff7c0c6c1b0d4b75365d97ccf274a0cb87c (
plain) (
tree)
|
|
#!/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
|