[tor-commits] [tor-browser-bundle/master] Make dtar.sh less sensitive to weird character input.
mikeperry at torproject.org
mikeperry at torproject.org
Tue Jul 16 22:35:43 UTC 2013
commit 8868ff86a0c5e5afe20327520b1b955e3c8754a4
Author: Mike Perry <mikeperry-git at fscked.org>
Date: Tue Jul 16 15:23:59 2013 -0700
Make dtar.sh less sensitive to weird character input.
---
gitian/build-helpers/dtar.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gitian/build-helpers/dtar.sh b/gitian/build-helpers/dtar.sh
index bc2d89c..282ec2d 100755
--- a/gitian/build-helpers/dtar.sh
+++ b/gitian/build-helpers/dtar.sh
@@ -8,4 +8,4 @@ shift
find $@ -executable -exec chmod 700 {} \;
find $@ ! -executable -exec chmod 600 {} \;
-tar --no-recursion -Jcvf $TARFILE `find $@ | sort`
+find $@ | sort | tar --no-recursion -Jcvf $TARFILE -T -
More information about the tor-commits
mailing list