Skip to content

Commit

Permalink
fix unsolicited output
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessio Treglia committed Jun 30, 2023
1 parent 3d05972 commit 053318e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bashrcd
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ f_bashrcd_register_local_symbol f_bashrcd_check_run_parts
f_bashrcd_list_scripts() {
local l_cmd_run_parts

l_cmd_run_parts="$(f_bashrcd_check_run_parts)"
l_cmd_run_parts="$(f_bashrcd_check_run_parts 2>/dev/null)"
${l_cmd_run_parts} --list "${BASHRCD_DIR}"
}
f_bashrcd_register_local_symbol f_bashrcd_list_scripts
Expand Down Expand Up @@ -163,7 +163,7 @@ f_bashrcd_register_local_symbol f_bashrcd_fatal_arg_not_found
# main()

# This program can't run without run-parts or a compatible implementation
f_bashrcd_check_run_parts
f_bashrcd_check_run_parts &>/dev/null

f_bashrcd_init_userdir

Expand Down

0 comments on commit 053318e

Please sign in to comment.