From d8054d10b2716b5a8491f046b2d16f1363bf6ddd Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 25 Jun 2018 18:31:00 +0200 Subject: [PATCH] fix: Fix old bashdb compatibility --- src/bashDebug.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bashDebug.ts b/src/bashDebug.ts index 33378fb..952ec1c 100644 --- a/src/bashDebug.ts +++ b/src/bashDebug.ts @@ -139,7 +139,7 @@ export class BashDebugSession extends LoggingDebugSession { "${args.pathCat}" "${fifo_path}" >&${this.debugPipeIndex} & exec 4>"${fifo_path}" # Keep open for writing, bashdb seems close after every write. cd "${args.cwd}" - "${args.pathCat}" | "${args.pathBashdb}" --quiet --tty "${fifo_path}" -- "${args.program}" ${args.args.join(" ")} + "${args.pathCat}" | "${args.pathBashdb}" -q -t "${fifo_path}" -- "${args.program}" ${args.args.join(" ")} ` ], { stdio: ["pipe", "pipe", "pipe", "pipe"] });