diff --git a/hack/get-admin-kubeconfig.sh b/hack/get-admin-kubeconfig.sh index ea32110adc8..cb97ff3cd60 100755 --- a/hack/get-admin-kubeconfig.sh +++ b/hack/get-admin-kubeconfig.sh @@ -6,7 +6,7 @@ if [[ "$#" -ne 1 ]]; then fi if [[ $CI ]]; then - ./db "$1" | ./jq -r .openShiftCluster.properties.adminKubeconfig | base64 -d | sed -e 's|https://api-int\.|https://api\.|' + ./db "$1" | jq -r .openShiftCluster.properties.adminKubeconfig | base64 -d | sed -e 's|https://api-int\.|https://api\.|' else - go run ./hack/db "$1" | ./jq -r .openShiftCluster.properties.adminKubeconfig | base64 -d | sed -e 's|https://api-int\.|https://api\.|' + go run ./hack/db "$1" | jq -r .openShiftCluster.properties.adminKubeconfig | base64 -d | sed -e 's|https://api-int\.|https://api\.|' fi