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 --- installer/mod.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'installer') diff --git a/installer/mod.ts b/installer/mod.ts index d7ab125b3..927485342 100644 --- a/installer/mod.ts +++ b/installer/mod.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env deno --allow-all +#!/usr/bin/env -S deno --allow-all // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. const { env, stdin, args, exit, writeFile, chmod, run } = Deno; import { parse } from "../flags/mod.ts"; @@ -24,7 +24,7 @@ ARGS: SCRIPT_URL Local or remote URL of script to install [FLAGS...] List of flags for script, both Deno permission and script specific flag can be used. - + OPTIONS: -d, --dir Installation directory path (defaults to ~/.deno/bin) `); -- cgit v1.2.3