mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 08:31:12 +00:00
1c6a016644
Manage local Ocaml modules with OPAM. Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
16 lines
237 B
Bash
16 lines
237 B
Bash
#
|
|
# Initializes Ocaml package management.
|
|
#
|
|
# Authors:
|
|
# Sebastian Wiesner <lunaryorn@gmail.com>
|
|
#
|
|
|
|
# Return if requirements are not found.
|
|
if (( ! $+commands[opam] )); then
|
|
return 1
|
|
fi
|
|
|
|
# Initialize OPAM.
|
|
eval "$(opam config env)"
|
|
|