1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00
apt/_includes/apt-add.html

6 lines
365 B
HTML

{% assign domain = include.domain | default: site.apt.domain %}
{% assign dist = include.distribution | default: "`lsb_release -cs`" %}
{% highlight bash %}
$ sudo apt-add-repository -y 'deb [arch=amd64] https://{{ domain }}/{{ include.repo }} {{ dist }} {{ include.components }}' {% if include.update == true %}
$ sudo apt-get update{% endif %}
{% endhighlight %}