From 42876cad96d2bff58957b2e41698fdf61c212f7f Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 6 Dec 2019 21:43:19 +0000 Subject: [PATCH] Added install git --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3826ff38..49da0270 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,10 @@ jobs: command: 'apt-get update && apt-get install -y gcc g++' - run: name: Install CMAKE - command: 'apt-get update && sudo apt-get install -y cmake' + command: 'apt-get update && apt-get install -y cmake' + - run: + name: Install Git + command: 'apt-get update && apt-get install git' - run: name: Creating Build Files command: 'cmake -H. -Bbuild'