From: Stefan Huber Date: Fri, 20 Dec 2019 20:44:02 +0000 (+0100) Subject: install: Check for curl and git X-Git-Url: https://git.sthu.org/?p=vimconf.git;a=commitdiff_plain;h=a931955322474f987d9106d531cd11396c419bc4 install: Check for curl and git Also check for git and curl in the install script. Reported-by: Sebastian Burkhart --- diff --git a/install.sh b/install.sh index 3b9cfe7..b6ce4d7 100755 --- a/install.sh +++ b/install.sh @@ -34,8 +34,10 @@ check_prog() check_requirements() { - check_vim +python3 check_prog aspell + check_prog curl + check_prog git + check_vim +python3 check_py3 neovim }