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
230230 * @param context The context for operations.
231231 * @return Returns the markdown {@link String}.
232232 */
233- public static String getTermuxFilesDirStatMarkdownString (@ NonNull final Context context ) {
233+ public static String getTermuxFilesStatMarkdownString (@ NonNull final Context context ) {
234234 Context termuxPackageContext = TermuxUtils .getTermuxPackageContext (context );
235235 if (termuxPackageContext == null ) return null ;
236236
@@ -241,7 +241,7 @@ public static String getTermuxFilesDirStatMarkdownString(@NonNull final Context
241241 StringBuilder statScript = new StringBuilder ();
242242 statScript
243243 .append ("echo 'ls info:'\n " )
244- .append ("/system/bin/ls -lhd " )
244+ .append ("/system/bin/ls -lhdZ " )
245245 .append (" '/data/data'" )
246246 .append (" '/data/user/0'" )
247247 .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) {
368368 * @return Returns the markdown {@link String}.
369369 */
370370 public static String getTermuxDebugMarkdownString (@ NonNull final Context context ) {
371- String statInfo = TermuxFileUtils .getTermuxFilesDirStatMarkdownString (context );
371+ String statInfo = TermuxFileUtils .getTermuxFilesStatMarkdownString (context );
372372 String logcatInfo = getLogcatDumpMarkdownString (context );
373373
374374 if (statInfo != null && logcatInfo != null )
You can’t perform that action at this time.
0 commit comments