diff options
author | Rene Engelhard <rene@debian.org> | 2018-04-25 17:41:52 +0200 |
---|---|---|
committer | Rene Engelhard <rene@debian.org> | 2018-04-25 20:59:14 +0200 |
commit | 1197775435f7819cea90ae8b3da3f54c9e493cc4 (patch) | |
tree | 44b459ba16e06702852301d3237b7c03fc7c331a | |
parent | e514db95679658dfdb91a775999793d32de36cff (diff) |
Revert "add "s to grep in distro-install-clean-up"
Makes completely no sense, the for already gives us the "broken" arguments
This reverts commit e0201bbb7f4e05bf3a4273eca6129e88a4d246f8.
-rwxr-xr-x | bin/distro-install-clean-up | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/distro-install-clean-up b/bin/distro-install-clean-up index 974043dd005e..701c9ffa0972 100755 --- a/bin/distro-install-clean-up +++ b/bin/distro-install-clean-up @@ -76,7 +76,7 @@ if test "z$DESTDIR" != "z" ; then echo "Checking for DESTDIR inside installed files..." found_destdir= for file in `find $DESTDIR -type f` ; do - grep -q "$DESTDIR" "$file" && echo "$file: includes the string \"$DESTDIR\"" && found_destdir=1 + grep -q "$DESTDIR" $file && echo "$file: includes the string \"$DESTDIR\"" && found_destdir=1 done if test "z$found_destdir" != "z" ; then echo "!!!!!!!!!!!!!!!!!!!!!! WARNING !!!!!!!!!!!!!!!!!!!!!!" |