Fix issues
This commit is contained in:
parent
01b430d202
commit
8d6fb32979
3 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,7 @@ This is a premade and fully-fletched bashrc, fully configurable to your liking.
|
|||
```bash
|
||||
git clone https://git.staropensource.de/JeremyStarTM/jstmbash.git ${HOME}/.jstmbash # clone repository
|
||||
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
|
||||
exec bash # restart bash
|
||||
```
|
|
@ -80,6 +80,9 @@ if [ "${JSTMBASH_PATH_ENFORCE_CLEAN}" == "true" ]; then
|
|||
unset PATH_SYSTEM
|
||||
unset PATH_USER
|
||||
fi
|
||||
if [[ "${JSTM_PATH_APPENDS}" ]]; then
|
||||
export "PATH=${PATH}:${JSTM_PATH_APPENDS}"
|
||||
fi
|
||||
|
||||
# add goodies
|
||||
## extract command, very useful
|
||||
|
|
Reference in a new issue