File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
termux-shared/src/main/java/com/termux/shared Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ public static Error isTermuxFilesDirectoryAccessible(@NonNull final Context cont
230
230
* @param context The context for operations.
231
231
* @return Returns the markdown {@link String}.
232
232
*/
233
- public static String getTermuxFilesDirStatMarkdownString (@ NonNull final Context context ) {
233
+ public static String getTermuxFilesStatMarkdownString (@ NonNull final Context context ) {
234
234
Context termuxPackageContext = TermuxUtils .getTermuxPackageContext (context );
235
235
if (termuxPackageContext == null ) return null ;
236
236
@@ -241,7 +241,7 @@ public static String getTermuxFilesDirStatMarkdownString(@NonNull final Context
241
241
StringBuilder statScript = new StringBuilder ();
242
242
statScript
243
243
.append ("echo 'ls info:'\n " )
244
- .append ("/system/bin/ls -lhd " )
244
+ .append ("/system/bin/ls -lhdZ " )
245
245
.append (" '/data/data'" )
246
246
.append (" '/data/user/0'" )
247
247
.append (" '" + TermuxConstants .TERMUX_INTERNAL_PRIVATE_APP_DATA_DIR_PATH + "'" )
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ public static String geAPTInfoMarkdownString(@NonNull final Context context) {
368
368
* @return Returns the markdown {@link String}.
369
369
*/
370
370
public static String getTermuxDebugMarkdownString (@ NonNull final Context context ) {
371
- String statInfo = TermuxFileUtils .getTermuxFilesDirStatMarkdownString (context );
371
+ String statInfo = TermuxFileUtils .getTermuxFilesStatMarkdownString (context );
372
372
String logcatInfo = getLogcatDumpMarkdownString (context );
373
373
374
374
if (statInfo != null && logcatInfo != null )
You can’t perform that action at this time.
0 commit comments