[CalendarServer-changes] [13379] CalendarServer/trunk/support/_cache_deps

source_changes at macosforge.org source_changes at macosforge.org
Mon Apr 28 18:08:01 PDT 2014


Revision: 13379
          http://trac.calendarserver.org//changeset/13379
Author:   wsanchez at apple.com
Date:     2014-04-28 18:08:01 -0700 (Mon, 28 Apr 2014)
Log Message:
-----------
clean up more

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

Modified: CalendarServer/trunk/support/_cache_deps
===================================================================
--- CalendarServer/trunk/support/_cache_deps	2014-04-29 01:05:45 UTC (rev 13378)
+++ CalendarServer/trunk/support/_cache_deps	2014-04-29 01:08:01 UTC (rev 13379)
@@ -53,15 +53,7 @@
     curl -L -o "${wd}/.develop/tools/${pkg}.tgz" "${url}";
 done;
 
-for archive in $(find "${wd}/.develop/tools" -depth 1 -type f -name '*.tgz'); do
-  ruler "Cleaning up ${archive}";
-  tmp="$(mktemp -d -t fooXXXX)";
-  tar -C "${tmp}" --exclude '*.exe' -xvzf "${archive}";
-  tar -C "${tmp}" -cvzf "${archive}" .;
-  rm -rf "${tmp}";
-done;
 
-
 #
 # Download dependencies
 #
@@ -72,3 +64,17 @@
   --allow-unverified cx-Oracle \
   --requirement="${requirements}" \
   ;
+
+
+
+#
+# Remove .exe files from arvhives
+#
+
+for archive in $(find "${wd}/.develop" -type f -name '*.tgz'); do
+  ruler "Cleaning up ${archive}";
+  tmp="$(mktemp -d -t fooXXXX)";
+  tar -C "${tmp}" --exclude '*.exe' -xzf "${archive}";
+  tar -C "${tmp}" -czf "${archive}" .;
+  rm -rf "${tmp}";
+done;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20140428/ba07ce55/attachment.html>


More information about the calendarserver-changes mailing list