diff --git a/format b/format deleted file mode 100755 index bba26ed1e..000000000 --- a/format +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -# This scrips runs clang-format recursively on all files under specified -# directories. Formatting configuration is defined in .clang-format. - -# Format isn't enforced. Code reviewer has to ensure that a code format is -# valid and appropriate for the project. - -clang_format="clang-format" - -for directory in src tests -do - # If somebody wants to exclude a file from default formating here is a place - # for that - echo "formatting code under $directory/" - find "$directory" \( -name '*.hpp' -or -name '*.cpp' \) -print0 | xargs -0 "${clang_format}" -i -done diff --git a/install_neo b/install_neo deleted file mode 100755 index 4f1e4493e..000000000 --- a/install_neo +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -# You should run this script as a root. - -wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add - -echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list -apt-get update -apt-get install neo4j