Kaydet (Commit) dc0370ab authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

add a script to generate the links in bootstrap

üst f797994a
#!/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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment