Skip to content

Commit

Permalink
removed leftover console log
Browse files Browse the repository at this point in the history
Signed-off-by: Jonah Iden <[email protected]>
  • Loading branch information
jonah-iden committed Apr 13, 2023
1 parent 1743912 commit 97bb005
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion dev-packages/cli/src/download-plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ function resolveDownloadUrlPlaceholders(url: string): string {
for (const placeholder of Object.entries(placeholders)) {
url = url.replace(new RegExp(escapeStringRegexp(`\${${placeholder[0]}}`), 'g'), placeholder[1]);
}
console.log('new url ' + url);
return url;
}

Expand Down

0 comments on commit 97bb005

Please sign in to comment.