You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the path with a trailing slash like path/to/dir/ is set to the PATH argument, the file paths in the result become doubled slash paths like path/to/dir//found/file.txt.
It would be good to clean the paths.
example::
$ tree
.
└── examples
├── a
│ └── A.txt
├── b
│ └── B.txt
└── c
4 directories, 2 files
$ pt hello examples/
examples//a/A.txt
1:hello
examples//b/B.txt
1:hello world
The text was updated successfully, but these errors were encountered:
When the path with a trailing slash like
path/to/dir/
is set to the PATH argument, the file paths in the result become doubled slash paths likepath/to/dir//found/file.txt
.It would be good to clean the paths.
example::
The text was updated successfully, but these errors were encountered: