mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-10 20:31:10 +00:00
12 lines
212 B
Bash
Executable file
12 lines
212 B
Bash
Executable file
#!/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
|