Fix pacaur invocation in Arch installation (#2663)

Pacaur does not work as root for security reasons, it will only ask for a password interactively when invoking `makepkg`:

```
$ sudo pacaur -S home-assistant
[sudo] password for zoresvit: 
:: you cannot perform this operation as root
```
This commit is contained in:
Ruslan Kiianchuk 2017-05-19 11:08:10 -07:00 committed by Fredrik Lindqvist
parent 3b3f2f1843
commit 5cc239bc3e

View File

@ -27,5 +27,5 @@ $ pip3 install homeassistant
Home Assistant is part of the [AUR](https://aur.archlinux.org/packages/home-assistant/). This means that it can be installed with `pacaur`:
```bash
$ sudo pacaur -S home-assistant
$ pacaur -S home-assistant
```