Merge pull request #906 from smallstep/install-step-ra-arm5

We now have an armv5 step-ca build; remove guard clause from RA installer
This commit is contained in:
Carl Tashian 2022-04-20 10:32:24 -07:00 committed by GitHub
commit 3424442c50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,11 +38,6 @@ case $arch in
armv7*) arch="armv7" ;;
esac
if [ "$arch" = "armv5" ]; then
echo "This script doesn't work on armv5 machines"
exit 1
fi
if ! hash jq &> /dev/null; then
echo "This script requires the jq commmand; please install it."
exit 1