install: Check for curl and git
authorStefan Huber <shuber@sthu.org>
Fri, 20 Dec 2019 20:44:02 +0000 (21:44 +0100)
committerStefan Huber <shuber@sthu.org>
Fri, 20 Dec 2019 20:44:02 +0000 (21:44 +0100)
Also check for git and curl in the install script.

Reported-by: Sebastian Burkhart
install.sh

index 3b9cfe762276e31d8ac1742d0ded2c540672f3c4..b6ce4d78021614f5f337c1df98464b347fe83617 100755 (executable)
@@ -34,8 +34,10 @@ check_prog()
 
 check_requirements()
 {
 
 check_requirements()
 {
-    check_vim +python3
     check_prog aspell
     check_prog aspell
+    check_prog curl
+    check_prog git
+    check_vim +python3
     check_py3 neovim
 }
 
     check_py3 neovim
 }