fix operator-sdk version message (#525)

Signed-off-by: Michal Vala <mvala@redhat.com>
pull/527/head
Michal Vala 2020-11-12 08:07:52 +01:00 committed by GitHub
parent 24fb122aa8
commit 7bea2f6e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ init() {
check() {
local operatorVersion=$(operator-sdk version)
[[ $operatorVersion =~ .*v0.15.2.* ]] || { echo "operator-sdk v0.10.0 is required"; exit 1; }
[[ $operatorVersion =~ .*v0.15.2.* ]] || { echo "operator-sdk v0.15.2 is required"; exit 1; }
}
updateFiles() {