diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-28 17:40:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 12:40:43 -0400 |
commit | 678313b17677e012ba9a07aeca58af1aafbf4e8c (patch) | |
tree | e48e25b165a7d6d566095442448f2e36fa09c561 /std/examples/gist.ts | |
parent | 47c2f034e95696a47770d60aec1362501e7f330d (diff) |
BREAKING: Remove Deno.EOF, use null instead (#4953)
Diffstat (limited to 'std/examples/gist.ts')
-rwxr-xr-x | std/examples/gist.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/examples/gist.ts b/std/examples/gist.ts index a11a92383..c41b9b98e 100755 --- a/std/examples/gist.ts +++ b/std/examples/gist.ts @@ -1,6 +1,6 @@ #!/usr/bin/env -S deno --allow-net --allow-env // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { parse } from "https://deno.land/std/flags/mod.ts"; +import { parse } from "../flags/mod.ts"; function pathBase(p: string): string { const parts = p.split("/"); |