summaryrefslogtreecommitdiff
path: root/http/file_server.ts
diff options
context:
space:
mode:
authorNayeem Rahman <muhammed.9939@gmail.com>2019-07-28 12:10:29 +0100
committerRyan Dahl <ry@tinyclouds.org>2019-07-28 11:10:29 +0000
commitad6360edf9a072fdb393ddb59036ba8bb4dae25e (patch)
treedd869bcdf0d73b4447c6873a2f2d55ae641c58c7 /http/file_server.ts
parentfaf2cd92fc4da744d91be95fbab0bebecda0b02c (diff)
Make shebangs Linux compatible (denoland/deno_std#545)
Original: https://github.com/denoland/deno_std/commit/5e77e8adc70f9fffc88a86e18608283b0e10848e
Diffstat (limited to 'http/file_server.ts')
-rwxr-xr-xhttp/file_server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/file_server.ts b/http/file_server.ts
index 7d1d132c9..903d99c21 100755
--- a/http/file_server.ts
+++ b/http/file_server.ts
@@ -1,4 +1,4 @@
-#!/usr/bin/env deno --allow-net
+#!/usr/bin/env -S deno --allow-net
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// This program serves files in the current directory over HTTP.