summaryrefslogtreecommitdiff
path: root/bin/create_bootstrap_links
diff options
context:
space:
mode:
Diffstat (limited to 'bin/create_bootstrap_links')
-rwxr-xr-xbin/create_bootstrap_links15
1 files changed, 0 insertions, 15 deletions
diff --git a/bin/create_bootstrap_links b/bin/create_bootstrap_links
deleted file mode 100755
index a42f7b803..000000000
--- a/bin/create_bootstrap_links
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-
-BIN_DIR=$(dirname $0)
-REPOS=$(cat ${BIN_DIR?}/repo-list)
-cd ${BIN_DIR?}/..
-BOOTSTRAP_DIR=$(pwd)
-
-for repo in $REPOS ; do
- for link in $(ls clone/${repo}) ; do
- if [ ! -e "$link" ] ; then
- echo "Creating missing link $link"
- ln -s "clone/${repo}/$link" "$link"
- fi
- done
-done