script/symlink-tree.sh: Fix missing config dir
Apparently symlink-tree has not been used in quite some time as it fails to symlink the always required config dir Also, if we pulled from git but .git is missing we get many error messages on the symlinked tree without this patch (which symlinks .git, if present) Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
This commit is contained in:
parent
3e08637e87
commit
c19b7aaac5
1 changed files with 7 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
FILES="
|
||||
BSDmakefile
|
||||
config
|
||||
Config.in
|
||||
LICENSE
|
||||
Makefile
|
||||
|
@ -19,6 +20,9 @@ FILES="
|
|||
toolchain
|
||||
tools"
|
||||
|
||||
OPTIONAL_FILES="
|
||||
.git"
|
||||
|
||||
if [ -f feeds.conf ] ; then
|
||||
FILES="$FILES feeds.conf"
|
||||
fi
|
||||
|
@ -42,4 +46,7 @@ for file in $FILES; do
|
|||
}
|
||||
ln -s "$PWD/$file" "$1/"
|
||||
done
|
||||
for file in $OPTIONAL_FILES; do
|
||||
[ -e "$PWD/$file" ] && ln -s "$PWD/$file" "$1/"
|
||||
done
|
||||
exit 0
|
||||
|
|
Loading…
Reference in a new issue