Skip to content

Commit 6fd6d75

Browse files
committed
Fix copy dsfr to public script
1 parent f08d2f9 commit 6fd6d75

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/bin/copy_dsfr_dist_to_public.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ if (fs.existsSync(dsfrDirPath)) {
3232
fs.rmSync(dsfrDirPath, { "recursive": true, "force": true });
3333
}
3434

35-
fs.cpSync(pathJoin(projectDirPath, "node_modules", "@gouvfr", "dsfr", "dist"), dsfrDirPath, {
36-
"recursive": true
37-
});
35+
fs.cpSync(
36+
pathJoin(projectDirPath, "node_modules", "@codegouvfr", "react-dsfr", "dsfr"),
37+
dsfrDirPath,
38+
{
39+
"recursive": true
40+
}
41+
);

0 commit comments

Comments
 (0)