Skip to content

Commit 31cee76

Browse files
authored
fix lint
1 parent 366b9b4 commit 31cee76

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkgm.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,10 @@ async function mirror_directory(dst: string, src: string, prefix: string) {
372372
await Deno.link(sourcePath, targetPath);
373373
} catch {
374374
if (!warned_copy_fallback) {
375-
console.warn("%c! hardlinking failed (possibly cross-device?), falling back to file copy", "color:yellow");
375+
console.warn(
376+
"%c! hardlinking failed (possibly cross-device?), falling back to file copy",
377+
"color:yellow",
378+
);
376379
warned_copy_fallback = true;
377380
}
378381
await Deno.copyFile(sourcePath, targetPath);

0 commit comments

Comments
 (0)