You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/04/13 07:02:44 UTC

[skywalking-showcase] branch main updated: Fix wrong syntax in makefile

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new 54fab02  Fix wrong syntax in makefile
54fab02 is described below

commit 54fab023fbd901a6cb795cf718723b3000d4baf4
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu Apr 13 15:02:35 2023 +0800

    Fix wrong syntax in makefile
---
 deploy/platform/kubernetes/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy/platform/kubernetes/Makefile b/deploy/platform/kubernetes/Makefile
index 06b7a27..88a8d0a 100644
--- a/deploy/platform/kubernetes/Makefile
+++ b/deploy/platform/kubernetes/Makefile
@@ -156,7 +156,7 @@ deploy: $(features)
 	helm dep up .
 	helm -n $(NAMESPACE) upgrade --install $(RELEASE) . --create-namespace --timeout=20m $(HELM_OPTIONS)
 
-	$(shell echo rollout restart to allow the new sidecar to be injected.)
+	$(info rollout restart to allow the new sidecar to be injected.)
 	kubectl -n $(SAMPLE_SERVICES_NAMESPACE) get deployments -o name | xargs kubectl -n $(SAMPLE_SERVICES_NAMESPACE) rollout restart
 
 .PHONY: undeploy