Skip to content

Commit

Permalink
fix(util): add hardcoded output name when the output ends with '/'
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Dec 11, 2024
1 parent 7b9559b commit 619ca9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/if-merge/util/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ const saveMergedManifest = async (
context: Context,
outputPath: string | undefined
) => {
if (outputPath?.endsWith('/')) {
outputPath += 'merged-manifest';
}

const output = {
outputPath,
noOutput: false,
Expand Down

0 comments on commit 619ca9f

Please sign in to comment.