Skip to content

Commit

Permalink
fix quoting in julia.bat
Browse files Browse the repository at this point in the history
The command line parser used to be tolerant of this oddity, since the first argument is supposed to use different escaping rules than the other arguments. But now we are using the same rules for all arguments, so it no longer worked.
  • Loading branch information
vtjnash authored and vchuravy committed Oct 12, 2020
1 parent 475b0f1 commit a8019ee
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 @@ -48,7 +48,7 @@ $(BUILDROOT)/doc/_build/html/en/index.html: $(shell find $(BUILDROOT)/base $(BUI

julia-symlink: julia-cli-$(JULIA_BUILD_MODE)
ifeq ($(OS),WINNT)
@echo '@"%~dp0"\'"$$(echo $(call rel_path,$(BUILDROOT),$(JULIA_EXECUTABLE)) | tr / '\\')" '%*' > $(BUILDROOT)/julia.bat
@echo '@"%~dp0\'"$$(echo $(call rel_path,$(BUILDROOT),$(JULIA_EXECUTABLE)) | tr / '\\')"\" '%*' > $(BUILDROOT)/julia.bat
chmod a+x $(BUILDROOT)/julia.bat
else
ifndef JULIA_VAGRANT_BUILD
Expand Down

0 comments on commit a8019ee

Please sign in to comment.