/[CCFs]/bin/emptypkgdir
ViewVC logotype

Annotation of /bin/emptypkgdir

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Mon Feb 18 20:23:57 2002 UTC (22 years, 9 months ago) by ccflib
Branch: MAIN
CVS Tags: HEAD
*** empty log message ***

1 ccflib 1.1 #! /usr/local/bin/bash
2     #
3     # Giuseppe Vacanti, January 2000
4     #
5     # Called after a build, moves the packages that were not picked by
6     # findlatest to a special directory.
7     #
8     pkgdir=~/deliveries/packages
9     notbuiltdir=~/deliveries/notbuilt
10    
11     cd $pkgdir || exit 1
12     plist=`ls *.tgz 2> /dev/null`
13     if [ -z "$plist" ] ; then
14     exit
15     fi
16     for p in $plist ; do
17     echo $p not built.
18     mv $p $notbuiltdir
19     done
20    
21    
22    

  ViewVC Help
Powered by ViewVC 1.1.27