From c04bbd251e7947180aadba793255e16e3126ef56 Mon Sep 17 00:00:00 2001 From: Gaurang Patel Date: Wed, 8 May 2024 08:06:56 -0500 Subject: [PATCH] chore(makefile): comment for install-global to clarify linux support only (#3340) refs #3169 && #3197 Instead of make install, I was using make install-global because my path ordered the go/bin last. Took me a bit of time to clarify why the -t option wasn't working, so I had just removed it locally.. Anyway, figured I'd put this up --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec041ea8b5..000d01fa02 100644 --- a/Makefile +++ b/Makefile @@ -73,9 +73,10 @@ else endif .PHONY: install +## install-global: Install the celestia-node binary (only for systems that support GNU coreutils, i.e. Linux). install-global: @echo "--> Installing Celestia" - @install -v ./build/* -t ${PREFIX}/bin/ + @install -v ./build/* -t ${PREFIX}/bin .PHONY: install-global ## go-install: Build and install the celestia-node binary into the GOBIN directory.