vscode-bash-debug
vscode-bash-debug copied to clipboard
Ubuntu 18.04 LTS - lack of bashdb (not relevant anymore)
Seems that bashdb is missing from 18.04 repo.
Best way to workaround is to compile newest bashdb 4.4-0.94.
wget https://netix.dl.sourceforge.net/project/bashdb/bashdb/4.4-0.94/bashdb-4.4-0.94.tar.gz
tar -xvfz bashdb-*.tar.gz
cd bashdb-*
./configure
make
sudo make install
Heads up for build dependencies, since the provided ./configure does not list them as missing.
apt-get install texi2html texinfo
nice!
Seems that bashdb is missing from 18.04 repo.
doesn't work for me in make step ...
Currently newest version of plugin has bashdb files as part of extension package (vsix), and does not require bashdb installed in linux.
Thank you so much!! :100: