From ad6360edf9a072fdb393ddb59036ba8bb4dae25e Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Sun, 28 Jul 2019 12:10:29 +0100 Subject: Make shebangs Linux compatible (denoland/deno_std#545) Original: https://github.com/denoland/deno_std/commit/5e77e8adc70f9fffc88a86e18608283b0e10848e --- examples/catj.ts | 2 +- examples/gist.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/catj.ts b/examples/catj.ts index 82fec5ff9..79a129780 100644 --- a/examples/catj.ts +++ b/examples/catj.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env deno --allow-read +#!/usr/bin/env -S deno --allow-read // Ported from: https://github.com/soheilpro/catj // Copyright (c) 2014 Soheil Rashidi // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. diff --git a/examples/gist.ts b/examples/gist.ts index 6b5611120..7c52662b4 100755 --- a/examples/gist.ts +++ b/examples/gist.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env deno --allow-net --allow-env +#!/usr/bin/env -S deno --allow-net --allow-env // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. const { args, env, exit, readFile } = Deno; -- cgit v1.2.3