(filePath: string)
| 188 | } |
| 189 | |
| 190 | private quoteForContainer(filePath: string): string { |
| 191 | if (filePath === "~" || filePath.startsWith("~/")) { |
| 192 | return expandTildeForSSH(filePath); |
| 193 | } |
| 194 | return shescape.quote(filePath); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Expand tilde in file paths for container operations. |