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

Simplify the apt install #304

Draft
wants to merge 6 commits into
base: master
Choose a base branch
from
Draft

Conversation

peternewman
Copy link
Member

No description provided.

if [ "$TASK" = "codespell" ]; then sudo apt-get -y install python3-pip git; fi
if [ "$TASK" = "codespell" ]; then python3 -m pip install --no-input git+https://github.com/codespell-project/codespell.git; fi
#if [ "$TASK" = "codespell" ]; then pip install codespell; fi
sudo apt-get install -y xvfb libhtml-parser-perl lintian moreutils
Copy link
Member

Choose a reason for hiding this comment

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

Having this in one line makes the diff less readable in the future, should packages removed or added. However, one apt install command per line is also not perfect.
Can we do:

apt install \
  xvfb \
  ... \
  ... \
  ...

?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants