bash: fix PATH
All checks were successful
ci/woodpecker/push/lint Pipeline was successful

This commit is contained in:
Michael Grote 2024-05-06 23:07:59 +02:00
parent 32939a680b
commit 0be471d452

View file

@ -1,9 +1,10 @@
#!/bin/bash
# source extra files
source ./.bash_aliases
source ./.bash_functions
source ./.bash_ps1
# https://stackoverflow.com/questions/6659689/referring-to-a-file-relative-to-executing-script
source "${BASH_SOURCE%/*}/.bash_aliases"
source "${BASH_SOURCE%/*}/.bash_functions"
source "${BASH_SOURCE%/*}/.bash_ps1"
### PATH
# add my scripts to PATH
@ -51,3 +52,6 @@ export LESS='--mouse --wheel-lines=3 eFRX'
# deaktiviere alias von ll, wird von mir explizit gesetzt
unalias ll 2>/dev/null
~