Skip to content

Commit

Permalink
troubleshoot
Browse files Browse the repository at this point in the history
  • Loading branch information
okdas committed May 7, 2024
1 parent 333df2b commit f763ced
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ###
#####################
Expand Down

0 comments on commit f763ced

Please sign in to comment.