{% assign apt-add_domain = include.domain | default: site.apt.domain %} {% if include.distribution != 'focal' %}

If you are on Ubuntu 20.04 (focal) do this

{% highlight bash %} wget {{ site.ubuntu20_libicu60.url }}/{{ site.ubuntu20_libicu60.pkg }} sudo dpkg -i ./{{ site.ubuntu20_libicu60.pkg }} sudo apt-add-repository -y 'deb [arch=amd64] https://{{ apt-add_domain }}/{{ include.repo }} bionic {{ include.components }}'{% endhighlight %}
{% endif %} {% if include.distribution %} {% highlight bash %} sudo apt-add-repository -y 'deb [arch=amd64] https://{{ apt-add_domain }}/{{ include.repo }} {{ include.distribution }} {{ include.components }}'{% if include.update == true %} sudo apt-get update{% endif %} {% endhighlight %} {% else %}

For bash like shells.

{% 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-get update{% endif %} {% endhighlight %}

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-get update{% endif %} {% endhighlight %} {% endif %}