Skip to content
Snippets Groups Projects
Commit 34a96ad3 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(yarn): no utf for added offline modules

Closes #4126
parent 6c670912
No related branches found
No related tags found
No related merge requests found
...@@ -505,7 +505,7 @@ async function getAdditionalFiles(config, packageFiles) { ...@@ -505,7 +505,7 @@ async function getAdditionalFiles(config, packageFiles) {
const localModified = upath.join(config.localDir, f); const localModified = upath.join(config.localDir, f);
updatedArtifacts.push({ updatedArtifacts.push({
name: f, name: f,
contents: await fs.readFile(localModified, 'utf8'), contents: await fs.readFile(localModified),
}); });
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment