Skip to content

Commit

Permalink
Fix shebangs (denoland/deno#5898)
Browse files Browse the repository at this point in the history
  • Loading branch information
seidtgeist authored and caspervonb committed Jan 24, 2021
1 parent bbc808d commit 3682c75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/catj.ts
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion examples/gist.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion http/file_server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno --allow-net
#!/usr/bin/env -S deno run --allow-net --allow-read
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

// This program serves files in the current directory over HTTP.
Expand Down

0 comments on commit 3682c75

Please sign in to comment.