Skip to content

Commit

Permalink
Better handling of spaces in paths (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
jansorg authored Oct 9, 2024
1 parent b42e3cc commit ce225ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bashdb.in
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ fi

if [[ -n $_Dbg_script_file ]] ; then
# Set $0. This is a new bash 5.0 feature.
BASH_ARGV0=$_Dbg_script_file
BASH_ARGV0="$_Dbg_script_file"
fi
typeset _Dbg_dollar_0=$0
typeset _Dbg_dollar_0="$0"

trap '_Dbg_debug_trap_handler 0 "$BASH_COMMAND" "$@"' DEBUG
set -o functrace
Expand Down

0 comments on commit ce225ef

Please sign in to comment.