mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 12:48:01 +00:00
PR #1793 introduced helper functions for OS detection in some modules. These helpers require a module dependency on the 'helper' module.
This commit is contained in:
parent
f479f37ead
commit
d5bef142d4
@ -10,6 +10,9 @@ if (( ! $+commands[ghc] )); then
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Load dependencies.
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
# Prepend Cabal per user directories to PATH.
|
# Prepend Cabal per user directories to PATH.
|
||||||
if is-darwin && [[ -d $HOME/Library/Haskell ]]; then
|
if is-darwin && [[ -d $HOME/Library/Haskell ]]; then
|
||||||
path=($HOME/Library/Haskell/bin(/N) $path)
|
path=($HOME/Library/Haskell/bin(/N) $path)
|
||||||
|
@ -6,6 +6,9 @@
|
|||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Load dependencies.
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
# Return if requirements are not found.
|
# Return if requirements are not found.
|
||||||
if ! is-darwin; then
|
if ! is-darwin; then
|
||||||
return 1
|
return 1
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Load dependencies.
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
# Return if requirements are not found.
|
# Return if requirements are not found.
|
||||||
if ! is-darwin; then
|
if ! is-darwin; then
|
||||||
return 1
|
return 1
|
||||||
|
@ -10,6 +10,9 @@ if (( ! $+commands[perl] )); then
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Load dependencies.
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Load Perlbrew or plenv
|
# Load Perlbrew or plenv
|
||||||
#
|
#
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
# Patrick Bos <egpbos@gmail.com>
|
# Patrick Bos <egpbos@gmail.com>
|
||||||
#
|
#
|
||||||
|
|
||||||
|
# Load dependencies
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
# Load manually installed pyenv into the path
|
# Load manually installed pyenv into the path
|
||||||
if [[ -s "${PYENV_ROOT:=$HOME/.pyenv}/bin/pyenv" ]]; then
|
if [[ -s "${PYENV_ROOT:=$HOME/.pyenv}/bin/pyenv" ]]; then
|
||||||
path=("${PYENV_ROOT}/bin" $path)
|
path=("${PYENV_ROOT}/bin" $path)
|
||||||
|
@ -10,6 +10,9 @@ if (( ! $+commands[rsync] )); then
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Load dependencies.
|
||||||
|
pmodload 'helper'
|
||||||
|
|
||||||
#
|
#
|
||||||
# Aliases
|
# Aliases
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user