Remove obsolete scripts
Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1047
This commit is contained in:
parent
47dab02c2d
commit
a355bf4e77
17
format
17
format
@ -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
|
@ -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
|
Loading…
Reference in New Issue
Block a user