Changeset 1688
- Timestamp:
- 08/19/05 15:00:23 (3 years ago)
- Files:
-
- trunk/support/makedist.sh (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/support/makedist.sh
r1271 r1688 37 37 cp -v ../../../midcom-template/midcom-template.CHANGES midcom-template >> $logfile 2>&1 38 38 39 echo "Step 3: Eliminiate CVS Directories" 40 echo "Step 3: Eliminiate CVS Directories" >> $logfile 41 for file in `find -type d -name CVS`; do 42 echo "Deleting $file" >> $logfile 43 rm -rf $file 44 done 39 echo "Step 3: Eliminiate CVS Directories and temporary files" 40 echo "Step 3: Eliminiate CVS Directories and temporary files" >> $logfile 41 find -type d -name CVS -exec rm -rf {} \; 42 find -type f -name ".*" -exec rm -f {} \; 45 43 46 44 echo "Step 4: Eliminate blacklisted directories" … … 51 49 done 52 50 53 echo "Step 5: Set 644 mode access permissions for all locales" 54 echo "Step 5: Set 644 mode access permissions for all locales" >> $logfile 55 for file in `find -type d -name locale`; do 56 echo "Updating $file/*" >> $logfile 57 chmod 644 $file/* 58 done 59 60 echo "Step 6: Create API documentation (HTML-only)" 51 echo "Step 5: Create API documentation (HTML-only)" 61 52 echo "Step 6: Create API documentation (HTML-only)" >> $logfile 62 53 mkdir api-docs … … 65 56 cd - > /dev/null 2>&1 66 57 mv /tmp/midcom-docs/* api-docs >> $logfile 2>&1 58 59 echo "Step 6: Set file access permissions to 644 and directory permissions to 755" 60 echo "Step 6: Set file access permissions to 644 and directory permissions to 755" >> $logfile 61 find -type f -exec chmod 644 {} \; >> $logfile 2>&1 62 find -type d -exec chmod 755 {} \; >> $logfile 2>&1 67 63 68 64 echo "Step 7: Create Tarball"
