From ceed96b0d76b776c230ab10376305a33afee3293 Mon Sep 17 00:00:00 2001 From: Johannes Theiner Date: Thu, 31 Oct 2019 10:52:11 +0000 Subject: [PATCH] cleanup identation --- install.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/install.sh b/install.sh index 7a0f058..42dc192 100755 --- a/install.sh +++ b/install.sh @@ -4,19 +4,19 @@ install_packages() { if [[ -f /usr/bin/pacman ]]; then sudo pacman -S clang make cmake fltk catch2 - elif [[ -f /usr/bin/apt ]]; then - sudo apt install clang make cmake clang-tidy libfltk1.3 libfltk1.3-dev + elif [[ -f /usr/bin/apt ]]; then + sudo apt install clang make cmake clang-tidy libfltk1.3 libfltk1.3-dev - git clone https://github.com/catchorg/Catch2.git - cd Catch2 - cmake -Bbuild -H. -DBUILD_TESTING=OFF - sudo cmake --build build/ --target install - cd .. + git clone https://github.com/catchorg/Catch2.git + cd Catch2 + cmake -Bbuild -H. -DBUILD_TESTING=OFF + sudo cmake --build build/ --target install + cd .. - elif [[ -f /usr/local/Homebrew ]]; then - sudo brew install llvm clang make cmake clang-format fltk catch2 - - fi + elif [[ -f /usr/local/Homebrew ]]; then + sudo brew install llvm clang make cmake clang-format fltk catch2 + + fi }