Skip to content

Commit 2d26b5d

Browse files
author
gc46
authored
Fix ps call for Alpine images (#4097)
1 parent 1b7e1b8 commit 2d26b5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/processPicker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ interface IPipeTransportOptions {
5050

5151
export class RemoteAttachPicker {
5252
public static get commColumnTitle() { return Array(PsOutputParser.secondColumnCharacters).join("a"); }
53-
public static get linuxPsCommand() { return `ps -axww -o pid=,comm=${RemoteAttachPicker.commColumnTitle},args=`; }
54-
public static get osxPsCommand() { return `ps -axww -o pid=,comm=${RemoteAttachPicker.commColumnTitle},args= -c`; }
53+
public static get linuxPsCommand() { return `ps axww -o pid=,comm=${RemoteAttachPicker.commColumnTitle},args=`; }
54+
public static get osxPsCommand() { return `ps axww -o pid=,comm=${RemoteAttachPicker.commColumnTitle},args= -c`; }
5555
public static get debuggerCommand() { return "${debuggerCommand}"; }
5656
public static get scriptShellCmd() { return "sh -s"; }
5757

0 commit comments

Comments
 (0)