Changeset 595 for trunk/technical/common/build/build.sh
- Timestamp:
- Sep 4, 2002, 4:19:54 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/technical/common/build/build.sh
r591 r595 1 1 #!/bin/bash 2 2 # Remote build script (iboernig@suse.de) 3 # $Id: build.sh,v 1. 6 2002/09/04 07:55:54 pstorz Exp $3 # $Id: build.sh,v 1.7 2002/09/04 14:19:54 pstorz Exp $ 4 4 # 5 5 # Kurze Featuritis: … … 43 43 SPECFILE=$(ls *.spec | awk '{print $1}') 44 44 TARFILE=$(ls *.tar.[gb]z*| awk '{print $1}') 45 DIFFILES=$(ls *.dif* | awk '{print $1}')45 DIFFILES=$(ls *.dif* 2>/dev/null | awk '{print $1}') 46 46 47 47 # sonstige files die gebraucht werden 48 RESTFILES=$(ls *.init | awk '{print $1}') # fuer srpm inetd48 RESTFILES=$(ls *.init 2>/dev/null | awk '{print $1}') # fuer srpm inetd 49 49 50 50 PACKAGE=$(awk '/^Name:/ {print $2}' <$SPECFILE) … … 106 106 echo "";sleep 1;echo "";sleep 1;echo "";sleep 1;echo "";sleep 1;echo "";sleep 1; 107 107 sleep 10; 108 exit 1; 108 109 fi 109 110
Note:
See TracChangeset
for help on using the changeset viewer.