Skip to content

Commit

Permalink
chore(makefile): comment for install-global to clarify linux support …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
mastergaurang94 committed May 8, 2024
1 parent b2b75c1 commit c04bbd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c04bbd2

Please sign in to comment.