From 5c876024de49bb17294dbb952b9e14f6afab06f6 Mon Sep 17 00:00:00 2001 From: Stuart Cardall Date: Tue, 2 May 2017 17:22:00 +0000 Subject: [PATCH] setup-ngxblocker: fix sed error in Travis fixes https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker/pull/45 --- setup-ngxblocker | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-ngxblocker b/setup-ngxblocker index 368bbd297..05d68d834 100755 --- a/setup-ngxblocker +++ b/setup-ngxblocker @@ -168,7 +168,7 @@ find_includes() { local start=$(find_line $file $start_range $start_first_last) local end=$(find_line $file $end_range $end_first_last) - sed -n ${start},${end}p ${file} > $tmp + sed -n "$start,$end"p $file > $tmp line=$(find_line $tmp $search $search_first_last) rm -f $tmp