Skip to content

Commit 3fb2d47

Browse files
committed
fix: debug logs in mergeFrameworks not showing path to removed framework before writing merge output
1 parent 6e0937d commit 3fb2d47

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/itchy-nails-visit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@rock-js/platform-apple-helpers': patch
3+
---
4+
5+
fix: debug logs in mergeFrameworks not showing path to removed framework before writing merge output

packages/platform-apple-helpers/src/lib/utils/mergeFrameworks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function mergeFrameworks({
2020
const xcframeworkName = path.basename(outputPath);
2121

2222
if (existsSync(outputPath)) {
23-
logger.debug(`Removing `);
23+
logger.debug(`Removing existing merged framework output at ${outputPath}`);
2424
fs.rmSync(outputPath, { recursive: true, force: true });
2525
}
2626

0 commit comments

Comments
 (0)