[tor-commits] [tor-messenger-build/master] tor-messenger/build.osx: fix find commands
boklm at torproject.org
boklm at torproject.org
Mon Jun 29 12:43:46 UTC 2015
commit 6ab174c81d03bc5835d1af84a4ebc941dc19cdad
Author: Nicolas Vigier <boklm at torproject.org>
Date: Mon Jun 29 14:40:48 2015 +0200
tor-messenger/build.osx: fix find commands
---
projects/tor-messenger/build.osx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/tor-messenger/build.osx b/projects/tor-messenger/build.osx
index 5729c62..ee6a8b6 100644
--- a/projects/tor-messenger/build.osx
+++ b/projects/tor-messenger/build.osx
@@ -30,8 +30,8 @@ cd ..
mkdir dmg
mv Tor\ Messenger.app dmg
cd dmg
-find $@ -executable -exec chmod 750 {} \;
-find $@ ! -executable -exec chmod 640 {} \;
+find . -executable -exec chmod 750 {} \;
+find . ! -executable -exec chmod 640 {} \;
find . -type f | sed -e 's/^\.\///' | sort | xargs -i echo "{}={}" > ../filelist.txt
find . -type l | sed -e 's/^\.\///' | sort | xargs -i echo "{}={}" >> ../filelist.txt
More information about the tor-commits
mailing list