From a931955322474f987d9106d531cd11396c419bc4 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Fri, 20 Dec 2019 21:44:02 +0100 Subject: [PATCH] install: Check for curl and git Also check for git and curl in the install script. Reported-by: Sebastian Burkhart --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 } -- 2.30.2