mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Fix shebangs (#5898)
This commit is contained in:
parent
7d764a2c27
commit
db9c2c156a
3 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue