mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-07 03:05:18 +08:00
Avoid trailing slash in CWD (fixes #1413)
This commit is contained in:
@@ -348,10 +348,11 @@ public final class TerminalSession extends TerminalOutput {
|
|||||||
try {
|
try {
|
||||||
final String cwdSymlink = String.format("/proc/%s/cwd/", mShellPid);
|
final String cwdSymlink = String.format("/proc/%s/cwd/", mShellPid);
|
||||||
String outputPath = new File(cwdSymlink).getCanonicalPath();
|
String outputPath = new File(cwdSymlink).getCanonicalPath();
|
||||||
|
String outputPathWithTrailingSlash = outputPath;
|
||||||
if (!outputPath.endsWith("/")) {
|
if (!outputPath.endsWith("/")) {
|
||||||
outputPath += '/';
|
outputPathWithTrailingSlash += '/';
|
||||||
}
|
}
|
||||||
if (!cwdSymlink.equals(outputPath)) {
|
if (!cwdSymlink.equals(outputPathWithTrailingSlash)) {
|
||||||
return outputPath;
|
return outputPath;
|
||||||
}
|
}
|
||||||
} catch (IOException | SecurityException e) {
|
} catch (IOException | SecurityException e) {
|
||||||
|
Reference in New Issue
Block a user