From: Ben Collins Date: Sat, 16 Oct 1999 02:21:46 +0000 (+0000) Subject: cvs script X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ed4f64c5f5184c2dc3f188a07405436ada5fc85;p=dpkg cvs script --- diff --git a/release.sh b/release.sh new file mode 100755 index 00000000..c02d3521 --- /dev/null +++ b/release.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# Wichert: thought this might be useful :) -- Ben + +# run the autogen, but make sure we copy everything instead of symlinking +./autogen.sh --copy + +# remove CVS files +rm -rf `find . -name CVS -type d` +rm -f `find . -name .cvsignore -type f` + +# Remove any cruft files... +rm -f `find . -name '*.orig' -o -name '*.rej' -o -name '*~'` + +# Now remove the CVS scripts +rm -f autogen.sh release.sh