#!/bin/bash # There's probably a way to do this in the Makefile, but I couldn't figure # out how, so I'm doing it here. This script just tars up all the demos, # excluding the ones that are not ready for release. export TW_VERSION=`cat VERSION` echo ${TW_VERSION} tar --create -z --file=${dv}.tgz tw-demos \ --exclude="outtakes/*" \ --exclude="development/*" \ --exclude="broken/*" \ --exclude="uncat/*"