Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check-for-symlinks.sh « ci - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed71898f91d84c7d31137872a3692f5c757dfcbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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