()
| 89 | } |
| 90 | |
| 91 | getCleanupScript(): string { |
| 92 | return `if [ -n "$OLD_PS1" ]; then PS1="$OLD_PS1"; unset OLD_PS1; fi; unset __tpc; rm -f "$__TF" 2>/dev/null; unset __TF;`; |
| 93 | } |
| 94 | |
| 95 | getSetupScript(startMarker: string, endMarker: string): string { |
| 96 | const cleanup = this.getCleanupScript(); |