Skip to content

Commit

Permalink
successful parse? odd address
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Nov 15, 2023
1 parent 68eed83 commit e9d9b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/src/shared/next-gen-parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export async function nextGenParse({
logger,
id,
}: NextGenParseParams): Promise<CliCommandResponse> {
const commandArgs = ['build', `"${repoDir}"`, '--output', `"${repoDir}/bundle.zip"`];
const commandArgs = ['build', repoDir, '--output', `${repoDir}/bundle.zip`];

if (patchId && commitHash) {
commandArgs.push('--commit');
commandArgs.push(`"${commitHash}"`);
commandArgs.push(commitHash);

commandArgs.push('--patch');
commandArgs.push(patchId);
Expand Down

0 comments on commit e9d9b36

Please sign in to comment.