Skip to content

Commit

Permalink
fix: get protos from build/protos (#1265)
Browse files Browse the repository at this point in the history
* fix: get protos from build/protos
  • Loading branch information
sofisl authored May 11, 2022
1 parent 40e2c29 commit ea0d85c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/compileProtos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ async function compileProtos(
'-p',
'protos',
'-p',
path.join(__dirname, '..', '..', 'protos'),
path.join(__dirname, '..', '..', 'build', 'protos'),
'-o',
jsonOutput,
];
Expand All @@ -261,7 +261,7 @@ async function compileProtos(
'-p',
'protos',
'-p',
path.join(__dirname, '..', '..', 'protos'),
path.join(__dirname, '..', '..', 'build', 'protos'),
'-o',
jsOutput,
];
Expand Down

0 comments on commit ea0d85c

Please sign in to comment.