diff options
author | Nayeem Rahman <muhammed.9939@gmail.com> | 2019-07-31 12:13:05 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-07-31 11:13:05 +0000 |
commit | ef63ec763a142f1e96e12e21d27ffae439f84ffd (patch) | |
tree | 4d74e72a7a0d40eede9b1a680b25b15f823d63e9 | |
parent | ac269beabe1b16294118e64e69bf487639086941 (diff) |
Makes shebang Linux compatible (#2694)
-rwxr-xr-x | js/unit_test_runner.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/unit_test_runner.ts b/js/unit_test_runner.ts index 3a34df742..55ccd14bf 100755 --- a/js/unit_test_runner.ts +++ b/js/unit_test_runner.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env deno run --reload --allow-run +#!/usr/bin/env -S deno run --reload --allow-run // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import "./unit_tests.ts"; import { permissionCombinations, parseUnitTestOutput } from "./test_util.ts"; |