We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0d621 commit c5f17e4Copy full SHA for c5f17e4
src/core/k8.mjs
@@ -526,6 +526,7 @@ export class K8 {
526
if (entries.length !== 1) {
527
throw new FullstackTestingError(`invalid source path: ${srcPath}`)
528
}
529
+ // handle symbolic link
530
if (entries[0].name.indexOf(' -> ') > -1) {
531
const redirectSrcPath = path.join(path.dirname(srcPath), entries[0].name.substring(entries[0].name.indexOf(' -> ') + 4))
532
entries = await this.listDir(podName, containerName, redirectSrcPath)
0 commit comments