Skip to content

Commit

Permalink
chore: debug windows
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpeterparker committed Apr 11, 2024
1 parent 57c283b commit 172f8aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/services/generate.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ type PopulateInputFn = Omit<PopulateInput, 'gitHubAction'>;
const populateFromCDN = async ({where, template, localDevelopment}: PopulateInputFn) => {
const templatePath = getRelativeTemplatePath(template);

console.log("DEBUG ----> ", templatePath);

Check failure on line 60 in src/services/generate.services.ts

View workflow job for this annotation

GitHub Actions / lint

Replace `"DEBUG·---->·"` with `'DEBUG·---->·'`

const {hostname} = new URL(JUNO_CDN_URL);

const buffer = await downloadFromURL({
Expand All @@ -67,6 +69,8 @@ const populateFromCDN = async ({where, template, localDevelopment}: PopulateInpu
}
});

console.log("DEBUG ----> ", buffer);

Check failure on line 72 in src/services/generate.services.ts

View workflow job for this annotation

GitHub Actions / lint

Replace `"DEBUG·---->·"` with `'DEBUG·---->·'`

const uncompressedBuffer = await gunzipFile({source: buffer});

const files = await untarFile({source: uncompressedBuffer});
Expand Down

0 comments on commit 172f8aa

Please sign in to comment.