Make this thing return reasonable error codes.

This commit is contained in:
Ralph Bean
2015-06-18 17:22:12 +00:00
parent bcd2be9627
commit 2af301d99e

View File

@@ -8,6 +8,6 @@ for f in `find -type f -mtime -30 | grep -v "fedora-meeting\."`
do
teamname=$(basename $f | awk -F. '{ print $1 }' )
mkdir -p $BASELOCATION/$teamname
ln -s $PWD/$f $BASELOCATION/$teamname/ 2> /dev/null
ln -f -s $PWD/$f $BASELOCATION/$teamname/ 2> /dev/null
done