diff options
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ die () { check_sed () { QUUX=$(echo foox | sed -r 's/^fo{2}(.)$/quu\1/') - if ([ ! $QUUX = 'quux' ]) { + if ([ "$QUUX" != 'quux' ]) { warn "sed is not working properly. This may produce unexpected behaviour.\n" } } |