diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2006-12-10 22:49:21 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2006-12-10 22:49:21 +0000 |
commit | 7a5f5b49aaa035fec6fba47030f48cebda934856 (patch) | |
tree | 4d1acb119fe83f09217e58b5ed3603e0f75bb5fd /src | |
parent | a97dbb50966ae76345c7afba88acb3c061957667 (diff) | |
download | simplepkg-7a5f5b49aaa035fec6fba47030f48cebda934856.tar.gz simplepkg-7a5f5b49aaa035fec6fba47030f48cebda934856.tar.bz2 |
common.sh: package_build small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@69 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'src')
-rwxr-xr-x | src/simplaret | 2 |
1 files changed, 1 insertions, 1 deletions
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`" |