From b3365c4112002f294f746f820c7a18698b735199 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 5 Sep 2022 10:09:23 +0200 Subject: [PATCH] _includes/apt-add.html: fix apt-add-repository for fish shell. --- _includes/apt-add.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/apt-add.html b/_includes/apt-add.html index 4cbae39..a20ff5d 100644 --- a/_includes/apt-add.html +++ b/_includes/apt-add.html @@ -24,7 +24,7 @@ sudo apt-get update{% endif %}

If you are using fish

{% highlight bash %} -sudo apt-add-repository -y 'deb [arch=amd64] https://{{ apt-add_domain }}/{{ include.repo }}' (lsb_release -cs) '{{ include.components }}'{% if include.update == true %} +sudo apt-add-repository -y "deb [arch=amd64] https://{{ apt-add_domain }}/{{ include.repo }} "(lsb_release -cs)" {{ include.components }}"{% if include.update == true %} sudo apt-get update{% endif %} {% endhighlight %} {% endif %}