Reformatted the whole apt part
This commit is contained in:
parent
8c9d7a44f5
commit
1980652b5e
1 changed files with 27 additions and 5 deletions
|
@ -2,11 +2,33 @@
|
|||
# fail immediately on error
|
||||
set -e
|
||||
|
||||
bash -c "apt update && apt dist-upgrade && \
|
||||
apt install bash-completion locales man mc elinks git zsh curl neovim byobu htop \
|
||||
command-not-found apt-file apt-transport-https ca-certificates software-properties-common \
|
||||
python3-venv python3 libpython-dev libpython3-dev cmake clang build-essential && \
|
||||
apt-file update"
|
||||
apt update \
|
||||
&& apt dist-upgrade \
|
||||
&& apt install \
|
||||
apt-file \
|
||||
apt-transport-https \
|
||||
bash-completion \
|
||||
build-essential \
|
||||
byobu \
|
||||
ca-certificates \
|
||||
clang \
|
||||
cmake \
|
||||
command-not-found \
|
||||
curl \
|
||||
elinks \
|
||||
git \
|
||||
htop \
|
||||
libpython-dev \
|
||||
libpython3-dev \
|
||||
locales \
|
||||
man \
|
||||
mc \
|
||||
neovim \
|
||||
python3 \
|
||||
python3-venv \
|
||||
software-properties-common \
|
||||
zsh \
|
||||
&& apt-file update
|
||||
|
||||
# node related
|
||||
curl -RLSsf1 https://deb.nodesource.com/setup_10.x | bash -
|
||||
|
|
Loading…
Reference in a new issue