[pygobject] pygi-convert.sh: Fix 'find' syntax



commit 1c24bb089fcd69e3104ae72a0e7560a8c5a3f05b
Author: Paolo Borelli <pborelli gnome org>
Date:   Sun Dec 12 12:32:39 2010 +0100

    pygi-convert.sh: Fix 'find' syntax

 pygi-convert.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/pygi-convert.sh b/pygi-convert.sh
index cdbd387..4d415c4 100644
--- a/pygi-convert.sh
+++ b/pygi-convert.sh
@@ -3,7 +3,7 @@
 if [ -n "$1" ]; then
     FILES_TO_CONVERT="$@"
 else
-    FILES_TO_CONVERT="$(find -name '*.py')"
+    FILES_TO_CONVERT="$(find . -name '*.py')"
 fi
 
 for f in $FILES_TO_CONVERT; do



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]