From 92ebb0888348d4fd813490bb0b7b6939cdc04c48 Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Mon, 5 Sep 2016 13:30:03 +0200 Subject: [PATCH] test: remove "cd" and split over multiple lines It isn't necessary to change to the checkout directory because this is already the default pwd in the test section. Also split the commands over multiple line for overview purposes. --- circle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index f9ff53a..96ef233 100644 --- a/circle.yml +++ b/circle.yml @@ -20,4 +20,6 @@ dependencies: test: override: - - cd ${CIRCLE_PROJECT_REPONAME}; ./autogen.sh && make && sudo make install + - ./autogen.sh + - make + - sudo make install