1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 22:20:06 +08:00

Fix typo in install script (#1497)

This commit is contained in:
Erlend Hamberg 2018-03-16 12:50:38 +01:00 committed by Wang Shidong
parent 9b8b054d91
commit ceed7ca131

View File

@ -93,7 +93,7 @@ System="$(uname -s)"
# need_cmd {{{
need_cmd () {
if ! hash "$1" &>/dev/null; then
error "Need '$1' (command not fount)"
error "Need '$1' (command not found)"
exit 1
fi
}