Fix rmlink.sh

Exclude directories with symlinks which are under version control from
link cleanup script.

Change-Id: I9b93b3918f6d277a21cd30e7dcf91cf4adcc69f2
This commit is contained in:
Max 2017-12-13 11:48:51 +01:00
parent 20a58c6d6f
commit 70feb59917
1 changed files with 1 additions and 1 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
find . -type l -exec rm \{\} \;
find . -type l -not -path "./bin/*" -not -path "./M3UA_CNL113537/*" -not -path "./SCCP_CNL113341/*" -exec rm \{\} \;