Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix install-dependencies.sh for Ubuntu 18.04 #585

Merged
merged 14 commits into from
Sep 14, 2018
Merged
10 changes: 10 additions & 0 deletions scripts/install/apt-packages-list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,13 @@ ffmpeg

# Used for colorizing log files.
grc

# GNU coreutils provides basic commands that we depend on (echo, ls), and is
# almost certainly already installed, but let's make sure.
coreutils

# Want git for upgrading to the latest version. Probably already installed
# but not necessarily (i.e. it is possible to download a zip of POCS, which
# includes this file).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, I've wondered if we should skip git and just install the zip. An idea for later if we are finding we want to force atomic updates or something like that.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, an interesting idea. The downside is that it makes it harder to keep track of what is installed.

git

Loading