summaryrefslogtreecommitdiff
path: root/ndb/tools/clean-links.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ndb/tools/clean-links.sh')
-rwxr-xr-xndb/tools/clean-links.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/ndb/tools/clean-links.sh b/ndb/tools/clean-links.sh
deleted file mode 100755
index 01820f30616..00000000000
--- a/ndb/tools/clean-links.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-
-# 1 - Dir
-# 2 - Link dst
-
-if [ $# -lt 1 ]
-then
- exit 0
-fi
-
-files=`find $1 -type l -maxdepth 1`
-res=$?
-if [ $res -ne 0 ] || [ "$files" = "" ]
-then
- exit 0
-fi
-
-rm -f $files
-
-
-