From f6a9d7d7172df6422f895dcfe6f4267ad1b472da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 3 May 2019 23:15:16 +0200 Subject: add "deno run" subcommand (#2215) --- tools/is_tty_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/is_tty_test.py') diff --git a/tools/is_tty_test.py b/tools/is_tty_test.py index 867fd7a1c..6f7509a8c 100755 --- a/tools/is_tty_test.py +++ b/tools/is_tty_test.py @@ -12,7 +12,7 @@ IS_TTY_TEST_TS = "tests/is_tty.ts" def is_tty_test(deno_exe): - cmd = [deno_exe, IS_TTY_TEST_TS] + cmd = [deno_exe, "run", IS_TTY_TEST_TS] code, stdout, _ = tty_capture(cmd, b'') assert code == 0 assert str(stdin.isatty()).lower() in stdout -- cgit v1.2.3