Skip to content

Commit

Permalink
fix $HOME in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
LeChatP committed May 9, 2024
1 parent a12658d commit 6788901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export PATH := $(shell echo $HOME)/.cargo/bin:$(PATH)
export PATH := $(shell echo $$HOME)/.cargo/bin:$(PATH)
PROFILE ?= release
RELEASE = $(if $(filter $(PROFILE),release),--release,)
BIN_DIR := target/$(PROFILE)
Expand Down

0 comments on commit 6788901

Please sign in to comment.