From 14afad59aa64b23d983f4ac35068e958a4f25f48 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 6 May 2019 17:07:43 -0400 Subject: [PATCH] Add run to shebangs (denoland/deno_std#380) Original: https://github.com/denoland/deno_std/commit/0f00676e8f1b32ca6c9092c0a1f3af6932c4feeb --- format.ts | 2 +- test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/format.ts b/format.ts index 1965044cc3..c4aa35cf79 100755 --- a/format.ts +++ b/format.ts @@ -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"; diff --git a/test.ts b/test.ts index 652ffcaacc..869be1c8c7 100755 --- a/test.ts +++ b/test.ts @@ -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";