mirror of
https://github.com/pfloos/quack
synced 2024-12-22 04:14:26 +01:00
17 lines
276 B
Bash
17 lines
276 B
Bash
#!/bin/bash
|
|
|
|
QUACK_ROOT="/NOT/FOUND"
|
|
case "$(ps -p $$ -ocomm=)" in
|
|
"zsh")
|
|
QUACK_ROOT=$(dirname $0)
|
|
;;
|
|
*)
|
|
QUACK_ROOT=$(dirname ${BASH_SOURCE}[0])
|
|
;;
|
|
esac
|
|
|
|
export QUACK_ROOT="$( cd $QUACK_ROOT; pwd -P )"
|
|
|
|
export PATH=${QUACK_ROOT}/bin:$PATH
|
|
|