diff options
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 |