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.sh6
1 files changed, 3 insertions, 3 deletions
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/'
}