Skip to content

Commit

Permalink
fix(packLayer): use configured path
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Apr 11, 2024
1 parent efd74cd commit 833f709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packLayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const packLayer = async ({
})

const zipFileName = await new Promise<string>((resolve) => {
const zipFileName = path.join(base, 'dist', 'layers', `${id}.zip`)
const zipFileName = path.join(dist, `${id}.zip`)
zipfile.outputStream
.pipe(createWriteStream(zipFileName))
.on('close', () => {
Expand Down

0 comments on commit 833f709

Please sign in to comment.