diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2006-12-10 23:36:08 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2006-12-10 23:36:08 +0000 |
commit | e07f59b0ad248c4b03c56f29c31565e77f3b26f3 (patch) | |
tree | 8cd987a60290a09dd8f165397d0556b3e1e2f520 /src | |
parent | 8793c8d00999b8dc27f4ca0b0398e6850b27b5c1 (diff) | |
download | simplepkg-e07f59b0ad248c4b03c56f29c31565e77f3b26f3.tar.gz simplepkg-e07f59b0ad248c4b03c56f29c31565e77f3b26f3.tar.bz2 |
simplaret: simplaret_search_and_download_patch fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@73 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 581660f..f5f890f 100755 --- a/src/simplaret +++ b/src/simplaret @@ -447,7 +447,7 @@ function simplaret_search_and_download_patch { sugested="`package_name $sugested`" # check if the patch was already downloaded - if echo $DOWNLOADED_PATCHES | grep -q " $sugested "; then + if echo "$DOWNLOADED_PATCHES" | grep -q " $sugested "; then return fi |