Skip to content

Commit cf4defc

Browse files
committed
chore: test failure on fullname fn
1 parent 430992f commit cf4defc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/deployMessages.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ const getWebAppBundleContentFullName =
128128
// Normalize paths to ensure relative() works correctly on Windows
129129
const normalizedContent = component.content.split(sep).join(posix.sep);
130130
const normalizedFilePath = filePath.split(sep).join(posix.sep);
131-
return posix.relative(normalizedContent, normalizedFilePath);
131+
const relPath = posix.relative(normalizedContent, normalizedFilePath);
132+
return posix.join(component.fullName, relPath);
132133
};
133134

134135
/**

0 commit comments

Comments
 (0)