Replaces errcho alias with function

This commit is contained in:
Dan Kaplun 2015-05-11 21:32:50 -04:00
parent 691fc4c70a
commit dc7c2f47c0

View File

@ -6,7 +6,9 @@ is_executable () {
command -v "$1" >/dev/null 2>&1
}
alias errcho='>&2 echo'
errcho () {
>&2 echo "$@"
}
echo "# Installing slap..."