diff options
author | Stephan Seidt <stephan.seidt@gmail.com> | 2020-05-27 21:24:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 15:24:57 -0400 |
commit | db9c2c156a064469fc0ac6a1ad48ae4425926681 (patch) | |
tree | ad5ce3cfb527041cff254f4f2d4012c76ada733a /std/examples | |
parent | 7d764a2c27d9c50d1f4db1d73fe800b808402765 (diff) |
Fix shebangs (#5898)
Diffstat (limited to 'std/examples')
-rw-r--r-- | std/examples/catj.ts | 2 | ||||
-rwxr-xr-x | std/examples/gist.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/std/examples/catj.ts b/std/examples/catj.ts index bb2e9051b..93fc68a1d 100644 --- a/std/examples/catj.ts +++ b/std/examples/catj.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S deno --allow-read +#!/usr/bin/env -S deno run --allow-read // Ported from: https://github.com/soheilpro/catj // Copyright (c) 2014 Soheil Rashidi // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. diff --git a/std/examples/gist.ts b/std/examples/gist.ts index 5d66dbdaf..555ec8056 100755 --- a/std/examples/gist.ts +++ b/std/examples/gist.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S deno --allow-net --allow-env +#!/usr/bin/env -S deno run --allow-net --allow-env // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // A program to post files to gist.github.com. Use the following to install it: // deno install -f --allow-env --allow-read --allow-net=api.github.com https://deno.land/std/examples/gist.ts |