X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=trunk%2Fscripts%2Fsymlink-tree.sh;fp=trunk%2Fscripts%2Fsymlink-tree.sh;h=0000000000000000000000000000000000000000;hb=aec62346e36879d24b88fd60f3bd5bf3e92f2d44;hp=b5d38d11656f12a8e08e982ca5d6584c92c5f21f;hpb=934ccae1f57f5336ceb90b2d36c3442155fa1177;p=librewrt%2F.git diff --git a/trunk/scripts/symlink-tree.sh b/trunk/scripts/symlink-tree.sh deleted file mode 100755 index b5d38d1..0000000 --- a/trunk/scripts/symlink-tree.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env bash -# Create a new LibreWRT tree with symlinks pointing at the current tree -# Usage: ./scripts/symlink-tree.sh - -FILES=" - BSDmakefile - Config.in - LICENSE - Makefile - README - dl - docs - feeds.conf.default - include - package - rules.mk - scripts - target - toolchain - tools" - -if [ -f feeds.conf ] ; then - FILES="$FILES feeds.conf" -fi - -if [ -z "$1" ]; then - echo "Syntax: $0 " - exit 1 -fi - -if [ -e "$1" ]; then - echo "Error: $1 already exists" - exit 1 -fi - -set -e # fail if any commands fails -mkdir -p dl "$1" -for file in $FILES; do - [ -e "$PWD/$file" ] || { - echo "ERROR: $file does not exist in the current tree" - exit 1 - } - ln -s "$PWD/$file" "$1/" -done -exit 0