Skip to content

Commit

Permalink
Fix number of loops
Browse files Browse the repository at this point in the history
  • Loading branch information
Definitely-Not-Vlad committed Mar 8, 2021
1 parent c50f2a4 commit 0133e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export async function pullExtensions(appId, destinationDir) {

async function pullExtension(destinationDir, { extension, canonicalName }) {
let pullError = {};
for (let i = 0; i < 5; i++) {
for (let i = 0; i < 4; i++) {
try {
const url = await getExtensionUrl(extension);
const tgzDir = (await tmp.dir()).path;
Expand Down

0 comments on commit 0133e6f

Please sign in to comment.