From ef63ec763a142f1e96e12e21d27ffae439f84ffd Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Wed, 31 Jul 2019 12:13:05 +0100 Subject: [PATCH] Makes shebang Linux compatible (#2694) --- js/unit_test_runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/unit_test_runner.ts b/js/unit_test_runner.ts index 3a34df7421..55ccd14bf7 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";