9 lines
184 B
Bash
9 lines
184 B
Bash
#!/usr/bin/env zsh
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
function init_website_environments
|
|
{
|
|
export ERYNWELLS_ME_SITE="$HOME/Developer/erynwells.me"
|
|
}
|
|
|
|
init_website_environments "$@"
|