From a355bf4e77f7033bd38f75177416e2655b5cafdc Mon Sep 17 00:00:00 2001 From: Matej Ferencevic Date: Tue, 12 Dec 2017 11:27:13 +0100 Subject: [PATCH] Remove obsolete scripts Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1047 --- format | 17 ----------------- install_neo | 8 -------- 2 files changed, 25 deletions(-) delete mode 100755 format delete mode 100755 install_neo 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