@@ -126,8 +126,8 @@ install-format:
126126 @if ! command -v gofumpt > /dev/null; then \
127127 echo "🔄 - Installing gofumpt $(gofumpt_version)..."; \
128128 go install $(gofumpt)@$(gofumpt_version); \
129- @ echo "✅ - Installed gofumpt successfully!"; \
130- @ echo ""; \
129+ echo "✅ - Installed gofumpt successfully!"; \
130+ echo ""; \
131131 fi
132132
133133format : install-format
@@ -139,14 +139,14 @@ install-lint:
139139 @if ! command -v golangci-lint > /dev/null; then \
140140 echo "🔄 - Installing golangci-lint $(golangci_lint_version)..."; \
141141 go install $(golangci_lint)@$(golangci_lint_version); \
142- @ echo "✅ - Installed golangci-lint successfully!"; \
143- @ echo ""; \
142+ echo "✅ - Installed golangci-lint successfully!"; \
143+ echo ""; \
144144 fi
145145 @if ! command -v goimports > /dev/null; then \
146146 echo "🔄 - Installing goimports $(goimports_version)..."; \
147147 go install $(goimports)@$(goimports_version); \
148- @ echo "✅ - Installed goimports successfully!"; \
149- @ echo ""; \
148+ echo "✅ - Installed goimports successfully!"; \
149+ echo ""; \
150150 fi
151151
152152lint : install-lint
@@ -226,8 +226,8 @@ local-image:
226226 git clone https://github.com/strangelove-ventures/heighliner.git; \
227227 cd heighliner && go install; \
228228 cd ..; \
229- @ echo " ✅ - Installed heighliner successfully!" ; \
230- @ echo " " ; \
229+ echo " ✅ - Installed heighliner successfully!" ; \
230+ echo " " ; \
231231 fi
232232 @echo " 🔄 - Building Docker Image..."
233233 heighliner build -c juno --local -f ./chains.yaml
0 commit comments