Files
keycloak/operator/scripts/install-olm.sh
Alexander Schwartz 1cf16ce42d All CURL commands should check the HTTP response code (#31599)
Closes #31598

Signed-off-by: Alexander Schwartz <aschwart@redhat.com>
2024-07-26 12:39:03 +02:00

8 lines
245 B
Bash
Executable File

#! /bin/bash
set -euxo pipefail
mkdir -p /tmp/olm/
curl -f -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.20.0/install.sh -o /tmp/olm/install.sh
chmod +x /tmp/olm/install.sh
/tmp/olm/install.sh v0.20.0