diff --git a/_includes/setup-instructions.html b/_includes/setup-instructions.html index 8050beb..0033d17 100644 --- a/_includes/setup-instructions.html +++ b/_includes/setup-instructions.html @@ -1,6 +1,7 @@ {% assign setup-instructions_repo = include.repo | default: "eosio" %} {% assign setup-instructions_dist = include.distribution | default: "`lsb_release -cs`" %} +{% assign setup-instructions_domain = include.domain | default: site.apt.domain %} {% if include.collapse %}

Setup - Show

@@ -13,7 +14,7 @@ {% highlight bash %} $ sudo apt-get install software-properties-common -$ curl https://{{ site.apt.domain }}/key 2> /dev/null | sudo apt-key add - +$ curl https://{{ setup-instructions_domain }}/key 2> /dev/null | sudo apt-key add - {% endhighlight %}

Then you can add one or more of your repositories:

@@ -21,13 +22,14 @@ $ curl https://{{ site.apt.domain }}/key 2> /dev/null | sudo apt-key add - {% include apt-add.html repo=setup-instructions_repo distribution=setup-instructions_dist + domain=setup-instructions_domain components="stable" update=true %}

The url is structures as follows:

{% highlight html %} -https://{{ site.apt.domain }}/ [ ] [ ] +https://{{ setup-instructions_domain }}/ [ ] [ ] {% endhighlight %}