aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/common.sh2
-rwxr-xr-xsrc/simplaret2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/common.sh b/lib/common.sh
index fdcd5a0..ed00779 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -83,7 +83,7 @@ function package_build {
# get BUILD from a package name
local file pack build
- file="`basename $1`"
+ file="`basename $1 .tgz`"
pack="`package_name $1`"
build="`echo $file | sed -e "s/^$pack-//" | cut -d "-" -f 3`"
echo $build
diff --git a/src/simplaret b/src/simplaret
index 1c32166..ae738f2 100755
--- a/src/simplaret
+++ b/src/simplaret
@@ -439,7 +439,7 @@ function simplaret_search_and_download_patch {
local package_version package_build
# get just the file name
- candidate="`basename $(echo $candidate | cut -d , -f 1)`"
+ candidate="`echo $candidate | cut -d , -f 1`"
# now split the file name into pieces
package_version="`package_version $candidate`"