We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5b0a3 commit bbc7b83Copy full SHA for bbc7b83
contrib/julia-config.jl
@@ -11,7 +11,7 @@ const options = [
11
threadingOn() = ccall(:jl_threading_enabled, Cint, ()) != 0
12
13
function shell_escape(str)
14
- str = replace(str, "'", "'\''")
+ str = replace(str, "'" => "'\''")
15
return "'$str'"
16
end
17
examples/embedding/Makefile
@@ -46,7 +46,7 @@ $(BIN)/LocalModule.jl: $(SRCDIR)/LocalModule.jl
46
endif
47
48
check: $(BIN)/embedding$(EXE) $(BIN)/LocalModule.jl
49
- $(JULIA) $(SRCDIR)/embedding-test.jl $<
+ $(JULIA) --depwarn=error $(SRCDIR)/embedding-test.jl $<
50
@echo SUCCESS
51
52
clean:
0 commit comments