mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-21 06:20:05 -06:00
8 lines
245 B
Bash
Executable File
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
|