From c70d0bf17fc389f303e57ad763dd6a48ca9f9186 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 13 Jan 2020 22:15:38 +0000 Subject: [PATCH] Used single quotes to avoid escaping the double quotes. Committer: david --- 020_bootchart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/020_bootchart.sh b/020_bootchart.sh index bdaf593..e84b844 100644 --- a/020_bootchart.sh +++ b/020_bootchart.sh @@ -1,6 +1,6 @@ apt-get install -y bootchart2 pybootchartgui -sed -i "s|^GRUB_CMDLINE_LINUX=\"\(.*\)\"|GRUB_CMDLINE_LINUX=\"\1 initcall_debug printk.time=y init=/sbin/bootchartd\"|" /etc/default/grub +sed -i 's|^GRUB_CMDLINE_LINUX="\(.*\)"|GRUB_CMDLINE_LINUX="\1 initcall_debug printk.time=y init=/sbin/bootchartd"|' /etc/default/grub update-grub