From 130fe6d5007bdf268f86d4347b87e9bbbc71f930 Mon Sep 17 00:00:00 2001 From: Tomas M Date: Sat, 1 Dec 2012 03:38:52 -0900 Subject: [PATCH] bugfix to search correct directory --- livekitlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livekitlib b/livekitlib index 8ba8337..2e59065 100644 --- a/livekitlib +++ b/livekitlib @@ -459,7 +459,7 @@ union_append_bundles() echo_green_star echo "Adding bundles to union" - ( ls -1 "$1" ; find modules/ 2>/dev/null ) | grep '[.]'$BEXT'$' | sort -n | while read BUNDLE; do + ( ls -1 "$1" ; find "$1/modules/" 2>/dev/null ) | grep '[.]'$BEXT'$' | sort -n | while read BUNDLE; do echo "* $BUNDLE" BUN="$(basename "$BUNDLE")" mkdir -p "$2/$BUN"