Vitexus / FirefoxNightlyDeb

Debian package installing Firefox Nightly
https://www.mozilla.org/
BSD 2-Clause "Simplified" License
17 stars 9 forks source link

bash: lsb_release: command not found #13

Closed TNTBOMBOM closed 3 years ago

TNTBOMBOM commented 3 years ago

https://github.com/Vitexus/FirefoxNightlyDeb#installation

checking here:

echo "deb http://repo.vitexsoftware.cz $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/vitexsoftware.list

running in debian 10 will give:

user@host:~$ echo "deb https://repo.vitexsoftware.cz $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/vitexsoftware.list
bash: lsb_release: command not found
deb https://repo.vitexsoftware.cz  main
user@host:~$

so better change the command to:

echo "deb https://repo.vitexsoftware.cz default main" | sudo tee /etc/apt/sources.list.d/vitexsoftware.list

or any better command that can run out of the box.

Vitexus commented 3 years ago

Done