Skip to content

Commit

Permalink
fixed removing backticks from revision
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnOutDev committed Sep 20, 2023
1 parent be52a74 commit 6b3be66
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/helpers/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,11 @@ export async function getRevision({
});
const iterableStream = streamToIterable(stream);
return {
readScript: readData(iterableStream),
readScript: readData(
iterableStream,
shellCodeStartRegex,
shellCodeEndRegex
),
};
}

Expand Down

0 comments on commit 6b3be66

Please sign in to comment.