From 72f33abd6dbbbb618186c40fe217d129fa7b38c7 Mon Sep 17 00:00:00 2001 From: Sergiy Markin Date: Wed, 24 Jan 2024 20:00:53 +0000 Subject: [PATCH] Fix path to pull-images.sh This PS fixes path to pull-images.sh script previosly referenced by a symlink that was removed. Change-Id: I8b9d52a28558137892f9e702be91c07581acf873 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 669553733b..e28af88add 100644 --- a/Makefile +++ b/Makefile @@ -50,10 +50,10 @@ clean: rm -rf */charts */tmpcharts pull-all-images: - @./tools/pull-images.sh + @./tools/deployment/common/pull-images.sh pull-images: - @./tools/pull-images.sh $(filter-out $@,$(MAKECMDGOALS)) + @./tools/deployment/common/pull-images.sh $(filter-out $@,$(MAKECMDGOALS)) dev-deploy: @./tools/gate/devel/start.sh $(filter-out $@,$(MAKECMDGOALS))