mirror of
https://github.com/denoland/deno.git
synced 2025-01-13 09:32:24 -05:00
fs: Remove completed todo item (#406)
This commit is contained in:
parent
49ae9439f7
commit
d097e319e8
1 changed files with 2 additions and 14 deletions
|
@ -4,8 +4,6 @@ import { ensureDir, ensureDirSync } from "./ensure_dir.ts";
|
||||||
import { exists, existsSync } from "./exists.ts";
|
import { exists, existsSync } from "./exists.ts";
|
||||||
import { getFileInfoType } from "./utils.ts";
|
import { getFileInfoType } from "./utils.ts";
|
||||||
|
|
||||||
const isWindows = Deno.platform.os === "win";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensures that the link exists.
|
* Ensures that the link exists.
|
||||||
* If the directory structure does not exist, it is created.
|
* If the directory structure does not exist, it is created.
|
||||||
|
@ -30,12 +28,7 @@ export async function ensureSymlink(src: string, dest: string): Promise<void> {
|
||||||
|
|
||||||
await ensureDir(path.dirname(dest));
|
await ensureDir(path.dirname(dest));
|
||||||
|
|
||||||
// TODO(axetroy): remove this if condition. refs: https://github.com/denoland/deno/issues/2169
|
await Deno.symlink(src, dest, srcFilePathType);
|
||||||
if (isWindows) {
|
|
||||||
await Deno.symlink(src, dest, srcFilePathType || undefined);
|
|
||||||
} else {
|
|
||||||
await Deno.symlink(src, dest);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -62,10 +55,5 @@ export function ensureSymlinkSync(src: string, dest: string): void {
|
||||||
|
|
||||||
ensureDirSync(path.dirname(dest));
|
ensureDirSync(path.dirname(dest));
|
||||||
|
|
||||||
// TODO(axetroy): remove this if condition. refs: https://github.com/denoland/deno/issues/2169
|
Deno.symlinkSync(src, dest, srcFilePathType);
|
||||||
if (isWindows) {
|
|
||||||
Deno.symlinkSync(src, dest, srcFilePathType || undefined);
|
|
||||||
} else {
|
|
||||||
Deno.symlinkSync(src, dest);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue