8 lines
311 B
Bash
8 lines
311 B
Bash
|
addChickenRepositoryPath() {
|
||
|
addToSearchPathWithCustomDelimiter : CHICKEN_REPOSITORY_EXTRA "$1/lib/chicken/7/"
|
||
|
# addToSearchPathWithCustomDelimiter \; CHICKEN_INCLUDE_PATH "$1/share/"
|
||
|
export CHICKEN_INCLUDE_PATH="$1/share;$CHICKEN_INCLUDE_PATH"
|
||
|
}
|
||
|
|
||
|
envHooks=(${envHooks[@]} addChickenRepositoryPath)
|