mirror of
https://github.com/keycloak/keycloak.git
synced 2026-05-26 13:50:48 +00:00
3f62bb4d2b
Closes #34983 Signed-off-by: akbarhusainpatel <apatel@intermiles.com>
8 lines
252 B
Bash
Executable File
8 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
mkdir -p /tmp/olm/
|
|
curl -f -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.26.0/install.sh -o /tmp/olm/install.sh
|
|
chmod +x /tmp/olm/install.sh
|
|
/tmp/olm/install.sh v0.26.0
|