14 lines
219 B
Bash
14 lines
219 B
Bash
|
#
|
||
|
# Defines Elixir aliases.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Han Ngo <nntruonghan@gmail.com>
|
||
|
#
|
||
|
|
||
|
# Return if requirements are not found.
|
||
|
if (( ! $+commands[elixir] )); then
|
||
|
return 1
|
||
|
fi
|
||
|
|
||
|
# Source module files.
|
||
|
source "${0:h}/alias.zsh"
|