Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma committed Nov 18, 2021
1 parent 37fd0e7 commit ef32826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export class Command {
}

static isContainerStoppedOnDebug(container: string, podName: string, namespace: string): CliCommand {
return newK8sCommand('exec', '-it', '-n', namespace, '-c', container, podName, '--', 'awk \'END{print NR}\' tekton/termination');
return newK8sCommand('exec', '-it', '-n', namespace, '-c', container, podName, '--', 'awk \'END{print NR}\' /tekton/termination');
}

static debugContinue(container: string, podName: string, namespace: string): CliCommand {
Expand Down

0 comments on commit ef32826

Please sign in to comment.