aboutsummaryrefslogtreecommitdiff
path: root/trunk/lib/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib/common.sh')
-rw-r--r--trunk/lib/common.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh
index a531037..5538668 100644
--- a/trunk/lib/common.sh
+++ b/trunk/lib/common.sh
@@ -812,14 +812,13 @@ function gen_meta {
# usage: gen_meta <package-file>
if [ ! -f $1 ]; then
- echo "File not found: $1"
- exit 1;
+ return 1
else
- echo "Processing $1"
+ echo "Creating metafile for $1"
fi
if [ "`echo $1|grep -E '(.*{1,})\-(.*[\.\-].*[\.\-].*).tgz[ ]{0,}$'`" == "" ]; then
- return;
+ return
fi
NAME=$(echo $1 | sed -re "s/(.*\/)(.*.tgz)$/\2/")