From b7b298137f14e30fce0936aa9d99fcb21c9b401b Mon Sep 17 00:00:00 2001 From: rhatto Date: Tue, 4 Dec 2007 13:44:08 +0000 Subject: small changes git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@469 04377dda-e619-0410-9926-eae83683ac58 --- trunk/lib/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'trunk/lib') diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index 3a437c8..ec3e6f0 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -27,7 +27,7 @@ SIMPLARET="simplaret" function package_name { - echo "`basename $1 .tgz`" | sed -e 's/-[^-]*-[^-]*-[^-]*$//' + basename $1 .tgz | sed -e 's/-[^-]*-[^-]*-[^-]*$//' } @@ -49,7 +49,7 @@ function package_arch { # get ARCH from a package name local file pack arch - echo `basename $1` | sed -e 's/.*\-\(.*\)\-.*.tgz$/\1/' -e 's/_slamd64$//g' -e 's/_sflack$//g' + basename $1 | sed -e 's/.*\-\(.*\)\-.*.tgz$/\1/' -e 's/_slamd64$//g' -e 's/_sflack$//g' } @@ -57,7 +57,7 @@ function package_build { # get BUILD from a package name local file pack build - echo `basename $1` | sed -e 's/.*\-.*\-\(.*\).tgz$/\1/' + basename $1 | sed -e 's/.*\-.*\-\(.*\).tgz$/\1/' } -- cgit v1.2.3