[CalendarServer-changes] [14275] CalendarServer/trunk/support/submit

source_changes at macosforge.org source_changes at macosforge.org
Thu Jan 8 12:19:28 PST 2015


Revision: 14275
          http://trac.calendarserver.org//changeset/14275
Author:   wsanchez at apple.com
Date:     2015-01-08 12:19:28 -0800 (Thu, 08 Jan 2015)
Log Message:
-----------
Warn if there is cruft.

Modified Paths:
--------------
    CalendarServer/trunk/support/submit

Modified: CalendarServer/trunk/support/submit
===================================================================
--- CalendarServer/trunk/support/submit	2015-01-08 20:19:12 UTC (rev 14274)
+++ CalendarServer/trunk/support/submit	2015-01-08 20:19:28 UTC (rev 14275)
@@ -171,7 +171,12 @@
 "${wc}/support/_cache_deps";
 
 # Clean up after _cache_deps
-find "${wc}/.develop" -depth 1 ! '(' -name pip_downloads -o -name tools ')' -print0 | xargs -0 rm -r;
+find "${wc}/.develop" -depth 1 ! '(' -name pip_downloads -o -name tools ')' -print | {
+  while read filename; do
+    echo "Cruft in .develop: ${filename}";
+    exit 1;
+  done;
+}
 
 if "${build}"; then
   echo "";
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20150108/1d9f9eca/attachment.html>


More information about the calendarserver-changes mailing list