#!/bin/sh ## This file is copyright (c) 2007-2008 Bruce Ravel and ## licensed under The Creative Commons Attribution-ShareAlike License. ## make an easy to transport zip file containing the pod, html, css, ## dta, and image files echo "removing old zip file" rm -f aug.zip echo "making initial zip file" zip -q -R aug BUILDME configure install README '*.html' '*.pod' '*.css' 'images/*' 'data/*' -x 'templates/*' echo "moving initial zip file into aug/ and unpacking" mkdir aug mv aug.zip aug/ cd aug unzip -q aug.zip echo "making final zip file (aug.zip)" rm aug.zip cd .. zip -q -r aug aug/ echo "cleaning up" rm -rf aug/