summaryrefslogtreecommitdiff
path: root/scripts/remove-code-formatters
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/remove-code-formatters')
-rwxr-xr-xscripts/remove-code-formatters19
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/remove-code-formatters b/scripts/remove-code-formatters
new file mode 100755
index 00000000000..58ef03a4913
--- /dev/null
+++ b/scripts/remove-code-formatters
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# Check if file exists with -f. Check if in in the gdk rook directory.
+if [ ! -f ../GDK_ROOT ]; then
+ echo "Please run script from gitlab (e.g. gitlab-development-kit/gitlab) root directory."
+ exit 1
+fi
+
+PRECOMMIT=$(git rev-parse --git-dir)/hooks/pre-commit
+
+# Check if symlink exists with -L. Check if script was already installed.
+if [ ! -L $PRECOMMIT ]; then
+ echo "Pre-commit not installed. Nothing to remove."
+ exit 1
+fi
+
+rm ./scripts/pre-commit $PRECOMMIT
+chmod +x $PRECOMMIT
+echo "Pre-commit script installed successfully"