projects
/
docbook-dsssl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49cfb77
)
echo names of all files removed by build-clean
author
Michael Smith
<xmldoc@users.sourceforge.net>
Thu, 27 Mar 2008 01:06:48 +0000
(
01:06
+0000)
committer
Michael Smith
<xmldoc@users.sourceforge.net>
Thu, 27 Mar 2008 01:06:48 +0000
(
01:06
+0000)
buildtools/build-clean
patch
|
blob
|
history
diff --git
a/buildtools/build-clean
b/buildtools/build-clean
index 802d7434fc3e9663be5fc1e687500e2563b91a28..daf4282fc7c8796a02e93e0d1a3ab0ec439f60d3 100755
(executable)
--- a/
buildtools/build-clean
+++ b/
buildtools/build-clean
@@
-3,7
+3,10
@@
if [ -z "$(svn status | egrep '^\?|^X')" ]
then
# remove all files ignored by Subversion
- rm -rf $(svn status --no-ignore | grep '^I' | cut -c8- | cat -s)
+ for file in $(svn status --no-ignore | grep '^I' | cut -c8- | cat -s); do
+ echo "removing $file"
+ rm -rf $file;
+ done
else
echo
echo "Unversioned files found. Before building, either delete the"