comparison clean.sh @ 887:2499abcf2df1

Add a clean.sh script, to "rm -rf build/*-*". What it does is fairly trivial, but not necessarily obvious, and it's an excuse to add a big comment explaining things.
author Rob Landley <rob@landley.net>
date Sun, 15 Nov 2009 14:50:25 -0600
parents
children 626288dd5cf3
comparison
equal deleted inserted replaced
886:290e12307505 887:2499abcf2df1
1 #!/bin/bash
2
3 # Delete all the target stages, to force them to rebuild next time build.sh
4 # runs.
5
6 # This leaves build.packages and build/host alone. (You can delete those
7 # too if you like, rm -rf build is safe, it just means ./download.sh --extract
8 # and ./host-tools.sh will have to do their thing again, which takes a while.)
9
10 rm -rf build/*-*