Add run to shebangs (#380)

This commit is contained in:
Ryan Dahl 2019-05-06 17:07:43 -04:00 committed by GitHub
parent 2ad643d296
commit 0f00676e8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env deno --allow-run --allow-write --allow-read
#!/usr/bin/env deno run --allow-run --allow-write --allow-read
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const { exit, args, execPath } = Deno;
import { parse } from "./flags/mod.ts";

View File

@ -1,4 +1,4 @@
#!/usr/bin/env deno -A
#!/usr/bin/env deno run -A
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./colors/test.ts";
import "./datetime/test.ts";