From f763ced65dee6665122eb8c04a9ce9223450cc42 Mon Sep 17 00:00:00 2001 From: "Dmitry K." Date: Mon, 6 May 2024 17:23:17 -0700 Subject: [PATCH] troubleshoot --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Makefile b/Makefile index 70f88158e..ae0ef1057 100644 --- a/Makefile +++ b/Makefile @@ -851,12 +851,25 @@ ignite_install: ## Install ignite. Used by CI and heighliner. else \ SUDO=""; \ fi; \ + echo "Downloading Ignite CLI..."; \ wget https://github.com/ignite/cli/releases/download/v28.3.0/ignite_28.3.0_$(OS)_$(ARCH).tar.gz; \ + echo "Extracting Ignite CLI..."; \ tar -xzf ignite_28.3.0_$(OS)_$(ARCH).tar.gz; \ + echo "Contents of the extracted directory:"; \ + ls -lah; \ + echo "Moving Ignite CLI to /usr/local/bin..."; \ $$SUDO mv ignite /usr/local/bin/ignite; \ + echo "Cleaning up..."; \ rm ignite_28.3.0_$(OS)_$(ARCH).tar.gz; \ + echo "Checking if Ignite CLI is in the expected directory..."; \ + ls -lah /usr/local/bin/ | grep ignite; \ + echo "Current PATH: $$PATH"; \ + echo "Trying to run Ignite CLI version:"; \ + /usr/local/bin/ignite version; \ + echo "Trying to run Ignite CLI version without full path:"; \ ignite version + ##################### ### Documentation ### #####################