Skip to content

Commit 27c8c3f

Browse files
committed
chore: minor changes
Signed-off-by: ale5000 <15793015+ale5000-git@users.noreply.github.com>
1 parent a1c6232 commit 27c8c3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/common.lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ ui_error()
7878
conf_*) _source_file='common.inc.sh' ;;
7979
*) _source_file="${4:-"${0##*/}"}" ;;
8080
esac
81-
printf 1>&2 '%s:%s: ERROR: [%s] %s\n' "${_source_file?}" "${2:-0}" "${3:-<main>}" "${1:?}"
81+
printf 1>&2 '%s:%s: ERROR: [%s] %s\n' "${_source_file:-unknown}" "${2:-0}" "${3:-<main>}" "${1:?}"
8282

8383
pause_if_needed 0
8484
restore_saved_title_if_exist

tools/help.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ aligned_print 'shellhelp' 'Show the original help of the shell'
2626
printf '\n'
2727

2828
aligned_print 'build' 'Build the flashable zip (set the BUILD_TYPE env var to choose what to build)'
29-
aligned_print 'make' 'Execute "make" of your PC (on Windows it fallback to internal "pdpmake" if no make is found)'
29+
aligned_print 'make' 'Execute the system "make" (on Windows it falls back to internal "pdpmake" if no make is found)'
3030
if test "${PLATFORM:?}" = 'win'; then
3131
aligned_print 'pdpmake' 'Execute the internal "pdpmake"'
3232
else
33-
aligned_print 'pdpmake' 'Execute "pdpmake" of your PC'
33+
aligned_print 'pdpmake' 'Execute the system "pdpmake"'
3434
fi
3535
aligned_print 'gradlew' 'Execute the Gradle wrapper'
3636
aligned_print 'cmdline' 'Execute our command-line (if you are already inside, then it will be executed in a subshell)'

0 commit comments

Comments
 (0)