Skip to content

Commit

Permalink
doc: add missing sudo to INSTALL.md
Browse files Browse the repository at this point in the history
  • Loading branch information
robaerd committed Apr 12, 2021
1 parent b818e9e commit d628e7e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To use our stable repositories with our latest releases, following steps need to

```sh
# Example for Ubuntu Focal
apt-get install software-properties-common apt-transport-https
sudo apt-get install software-properties-common apt-transport-https
echo "deb https://debs.libelektra.org/focal focal main" | sudo tee /etc/apt/sources.list.d/elektra.list
```

Expand Down Expand Up @@ -72,7 +72,7 @@ sudo yum update
Or alternatively you can use dnf to add this repo:

```sh
dnf config-manager --add-repo https://rpms.libelektra.org/fedora-33/libelektra.repo
sudo dnf config-manager --add-repo https://rpms.libelektra.org/fedora-33/libelektra.repo
```

For our latest builds from master append `-unstable` to the suite name:
Expand All @@ -86,7 +86,7 @@ sudo yum update
Or alternatively you can use dnf to add this repo:

```sh
dnf config-manager --add-repo https://rpms.libelektra.org/fedora-33-unstable/libelektra.repo
sudo dnf config-manager --add-repo https://rpms.libelektra.org/fedora-33-unstable/libelektra.repo
```

### Install
Expand Down Expand Up @@ -187,13 +187,13 @@ LD_LIBRARY_PATH=$(pwd)/lib:${LD_LIBRARY_PATH} make package
To install the packages run this in the `package` directory:

```sh
apt-get install ./*
sudo apt-get install ./*
```

If any dependency problems appear, run following command to install the missing dependencies:

```sh
apt-get -f install
sudo apt-get -f install
```

#### Fedora
Expand All @@ -203,7 +203,7 @@ To install RPM packages we recommend using `yum localinstall` since installing w
Run following command in the `package` directory:

```sh
yum localinstall *
sudo yum localinstall *
```

### make
Expand Down

0 comments on commit d628e7e

Please sign in to comment.