Remove obsolete scripts

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1047
This commit is contained in:
Matej Ferencevic 2017-12-12 11:27:13 +01:00
parent 47dab02c2d
commit a355bf4e77
2 changed files with 0 additions and 25 deletions

17
format
View File

@ -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

View File

@ -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