This commit is contained in:
2024-08-25 01:40:44 +01:00
parent 93db2b01d1
commit d80a484d7e
3 changed files with 16 additions and 0 deletions

8
hooks/shell/00-env.sh Normal file
View File

@@ -0,0 +1,8 @@
murex-path-add() {
case "${PATH}" in
*"${1}"*);;
*) export PATH="${1}:${PATH}"
esac
}
murex-path-add "${MUREX}/bin:${MUREX}/private/bin"