Skip to content

Commit

Permalink
Makefile: fix PATH set on check-whitespace (JuliaLang#45957)
Browse files Browse the repository at this point in the history
  • Loading branch information
inkydragon committed Jul 22, 2022
1 parent f3eb156 commit 9bdaabd
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
Expand Up @@ -108,7 +108,7 @@ check-whitespace:
ifneq ($(NO_GIT), 1)
@# Append the directory containing the julia we just built to the end of `PATH`,
@# to give us the best chance of being able to run this check.
@PATH=$(PATH):$(dirname $(JULIA_EXECUTABLE)) $(JULIAHOME)/contrib/check-whitespace.jl
@PATH="$(PATH):$(dir $(JULIA_EXECUTABLE))" $(JULIAHOME)/contrib/check-whitespace.jl
else
$(warn "Skipping whitespace check because git is unavailable")
endif
Expand Down

0 comments on commit 9bdaabd

Please sign in to comment.