Skip to content

Commit 39a3025

Browse files
committed
Fix again gRPC interface IDs
1 parent e18d70e commit 39a3025

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

rpc/commands/compile.pb.go

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/commands/compile.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ message CompileReq {
3737
int32 jobs = 14; // The max number of concurrent compiler instances to run (as `make -jx`). If jobs is set to 0, it will use the number of available CPUs as the maximum.
3838
repeated string libraries = 15; // List of custom libraries paths separated by commas.
3939
bool optimizeForDebug = 16; // Optimize compile output for debug, not for release.
40-
string export_dir = 17; // Optional: save the build artifacts in this directory, the directory must exist.
41-
bool clean = 18; // Optional: cleanup the build folder and do not use any previously cached build
42-
bool export_binaries = 19; // When set to `true` the compiled binary will be copied to the export directory.
40+
string export_dir = 18; // Optional: save the build artifacts in this directory, the directory must exist.
41+
bool clean = 19; // Optional: cleanup the build folder and do not use any previously cached build
42+
bool export_binaries = 20; // When set to `true` the compiled binary will be copied to the export directory.
4343
}
4444

4545
message CompileResp {

0 commit comments

Comments
 (0)