Fix issues

This commit is contained in:
JeremyStar™ 2023-11-13 01:36:03 +01:00
parent 01b430d202
commit 8d6fb32979
3 changed files with 4 additions and 0 deletions

View file

@ -17,6 +17,7 @@ This is a premade and fully-fletched bashrc, fully configurable to your liking.
```bash ```bash
git clone https://git.staropensource.de/JeremyStarTM/jstmbash.git ${HOME}/.jstmbash # clone repository git clone https://git.staropensource.de/JeremyStarTM/jstmbash.git ${HOME}/.jstmbash # clone repository
echo "source \${HOME}" >> "${HOME}/.bashrc" # add init script to bashrc echo "source \${HOME}" >> "${HOME}/.bashrc" # add init script to bashrc
cp ${HOME}/.jstmbash/config.env.example ${HOME}/.jstmbash/config.env # copy example config
${EDITOR} ${HOME}/.jstmbash/config.env # configure jstmbash ${EDITOR} ${HOME}/.jstmbash/config.env # configure jstmbash
exec bash # restart bash exec bash # restart bash
``` ```

View file

@ -80,6 +80,9 @@ if [ "${JSTMBASH_PATH_ENFORCE_CLEAN}" == "true" ]; then
unset PATH_SYSTEM unset PATH_SYSTEM
unset PATH_USER unset PATH_USER
fi fi
if [[ "${JSTM_PATH_APPENDS}" ]]; then
export "PATH=${PATH}:${JSTM_PATH_APPENDS}"
fi
# add goodies # add goodies
## extract command, very useful ## extract command, very useful