diff options
Diffstat (limited to 'cli/js/ops/fs/chown.ts')
-rw-r--r-- | cli/js/ops/fs/chown.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/ops/fs/chown.ts b/cli/js/ops/fs/chown.ts index 52735e097..054b61f6c 100644 --- a/cli/js/ops/fs/chown.ts +++ b/cli/js/ops/fs/chown.ts @@ -6,7 +6,7 @@ import { pathFromURL } from "../../util.ts"; export function chownSync( path: string | URL, uid: number | null, - gid: number | null + gid: number | null, ): void { sendSync("op_chown", { path: pathFromURL(path), uid, gid }); } @@ -14,7 +14,7 @@ export function chownSync( export async function chown( path: string | URL, uid: number | null, - gid: number | null + gid: number | null, ): Promise<void> { await sendAsync("op_chown", { path: pathFromURL(path), uid, gid }); } |