1
0
Fork 0
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:
Stephan Seidt 2020-05-27 21:24:57 +02:00 committed by GitHub
parent 7d764a2c27
commit db9c2c156a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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

View file

@ -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.