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
Display system info before the stack trace (#2347)
* Display system info before the stack trace
* refactor: improve log file truncation using tee
* Update menu_main.sh
* Remove duplicate `indent_text` function
* Fix mis-spelling of `architecture`
* Fix the system info not being read
* Update docs/basics/command-line-usage.md
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
---------
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/basics/command-line-usage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ You may also need to fill in or adjust any other variables prefixed with the `<A
76
76
77
77
This is the best place to change the app's external default ports.
78
78
79
-
There will also be an application specific variable file created at `~/.dockstarter/compose/.env.app.<appname>`. This may or not be populated with variables. The variables included, if any, will entierly depend on the application installed. If you need to edit the values of the variables, or include any new variables for the app, it is entirely safe to do so.
79
+
There will also be an application specific variable file created at `~/.dockstarter/compose/.env.app.<appname>`. This may or may not be populated with variables. The variables included, if any, will entirely depend on the application installed. If you need to edit the values of the variables, or include any new variables for the app, it is entirely safe to do so.
local StackLineFormat="${C["TraceFrameNumber"]}%${FrameNumberLength}d${NC}:${indent}${FramePrefix}${C["TraceSourceFile"]}%s${NC}:${C["TraceLineNumber"]}%d${NC} (${C["TraceFunction"]}%s${NC})"
327
+
local StackLineFormat="${C["TraceFrameNumber"]}%${FrameNumberLength}d${NC}:${indent}${FramePrefix}${C["TraceSourceFile"]}%s${NC}:${C["TraceLineNumber"]}%d${NC} (${C["TraceFunction"]}%s${NC})"
328
+
329
+
if [[ Frame -ge StartFrame ]];then
330
+
# shellcheck disable=SC2059 # Don't use variables in the printf format string.
0 commit comments