Skip to content

Commit

Permalink
testing if replace markers gets called
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsomers101 committed Feb 20, 2024
1 parent 6b9bda1 commit 5af96ae
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/commands/generatePrototypeCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ export class generatePrototypeCommand {

private replaceMarkers(data: Uint8Array)
{
const term = this.builder.setName("test terminal replace markers")
.getTerminal();

terminalUtils.RunCommandsInExistingTerminal(term,[this.manifestFile.encodedZipContent])

const newData: Uint8Array = fileUtils.replaceMarkers(data, new Map<string, string>(
[
['{{zipFileContent}}', this.manifestFile.encodedZipContent],
Expand Down

0 comments on commit 5af96ae

Please sign in to comment.