prezto/modules/ocaml/init.zsh
Seizan Shimazaki fdb406f917 Fix typo
2014-10-05 21:12:54 -04:00

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)"