mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-10 20:31:10 +00:00
13 lines
212 B
Bash
13 lines
212 B
Bash
|
#!/bin/bash
|
||
|
LINKS=`find -type l`
|
||
|
if test -z $LINKS; then
|
||
|
echo "No symlinks found."
|
||
|
else
|
||
|
echo "===> FOUND SYMLINKS!"
|
||
|
echo
|
||
|
echo "$LINKS"
|
||
|
echo
|
||
|
echo "Please replace these with actual files."
|
||
|
exit 1;
|
||
|
fi
|