JY Lin

Results 2 comments of JY Lin

I bumped into this issue too. AbstractSftpSubsystemHelper.doRemoveDirectory takes valid input path `a/b/c/d/` and calls SftpFileSystemAccessor.resolveLocalFilePath, where `a/b/c/d/` is converted to `a/b/c/d/.`. In old version, `RootedFileSystemProvider.resolveLocalPath` will normalize `a/b/c/d/.` and doRemoveDirectory...

Here's the entry to a working example of AIT: https://github.com/bazelbuild/rules_utp/blob/29fdfe8be8bec141734181978f2d40777ad13740/example/ait/BUILD#L20 And here's the bazel cli to run the AIT, given an emulator has been running: https://github.com/bazelbuild/rules_utp/blob/29fdfe8be8bec141734181978f2d40777ad13740/.github/workflows/ci.yml#L119