Skip to content

Commit fc217ea

Browse files
authored
Avoid using Julia startup file for proto generation (#231)
1 parent 8eeb6a2 commit fc217ea

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ force-protobuf:
109109
mkdir -p $(GO_PROTO_DIR)
110110
cp gen/go/relationalai/lqp/v1/*.pb.go $(GO_PROTO_DIR)/
111111
rm -rf gen/python gen/go
112-
cd sdks/julia && julia --project=LogicalQueryProtocol.jl generate_proto.jl
112+
cd sdks/julia && julia --startup-file=no --project=LogicalQueryProtocol.jl generate_proto.jl
113113

114114
$(PY_PROTO_GENERATED) $(GO_PROTO_GENERATED): $(PROTO_FILES)
115115
buf lint
@@ -130,7 +130,7 @@ $(PY_PROTO_GENERATED) $(GO_PROTO_GENERATED): $(PROTO_FILES)
130130
$(JL_PROTO_GENERATED): $(PROTO_FILES)
131131
buf lint
132132
buf breaking --against ".git#branch=main,subdir=proto"
133-
cd sdks/julia && julia --project=LogicalQueryProtocol.jl generate_proto.jl
133+
cd sdks/julia && julia --startup-file=no --project=LogicalQueryProtocol.jl generate_proto.jl
134134

135135
# ---------- parser generation ----------
136136

0 commit comments

Comments
 (0)