File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 38
38
# "_bash_it_main_file_type" param is empty so that files get sourced in glob order
39
39
for _bash_it_main_file_type in " " " aliases" " plugins" " completion" ; do
40
40
BASH_IT_LOG_PREFIX=" core: reloader: "
41
- source " ${BASH_IT} /scripts/reloader.bash" " ${_bash_it_main_file_type: +skip} " " $_bash_it_main_file_type "
41
+ # shellcheck disable=SC2140
42
+ source " ${BASH_IT} /scripts/reloader.bash" ${_bash_it_main_file_type: +" skip" " $_bash_it_main_file_type " }
42
43
BASH_IT_LOG_PREFIX=" core: main: "
43
44
done
44
45
Original file line number Diff line number Diff line change 10
10
_bash_it_ble_path=${XDG_DATA_HOME:- $HOME / .local/ share} /blesh/ble.sh
11
11
if [[ -f $_bash_it_ble_path ]]; then
12
12
# shellcheck disable=1090
13
- source " $_bash_it_ble_path "
13
+ source " $_bash_it_ble_path " --attach=prompt
14
14
else
15
15
_log_error " Could not find ble.sh in $_bash_it_ble_path "
16
16
_log_error " Please install using the following command:"
You can’t perform that action at this time.
0 commit comments