From 37cf01da33895e94c724d589d65938ae03678608 Mon Sep 17 00:00:00 2001 From: Jacie Date: Wed, 6 Dec 2023 15:52:57 +0800 Subject: [PATCH] fix(build): fix the wrong dapper command to get version --- hack/lib/dapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/lib/dapper.sh b/hack/lib/dapper.sh index 72a9fee3..5e1ec991 100755 --- a/hack/lib/dapper.sh +++ b/hack/lib/dapper.sh @@ -19,7 +19,7 @@ function autok3s::dapper::validate() { autok3s::log::info "installing dapper" if autok3s::dapper::install; then - autok3s::log::info "dapper: $(dapper -v)" + autok3s::log::info "dapper: $(.dapper -v)" return 0 fi autok3s::log::error "no dapper available"