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
|
# fail immediately on error
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
bash -c "apt update && apt dist-upgrade && \
|
apt update \
|
||||||
apt install bash-completion locales man mc elinks git zsh curl neovim byobu htop \
|
&& apt dist-upgrade \
|
||||||
command-not-found apt-file apt-transport-https ca-certificates software-properties-common \
|
&& apt install \
|
||||||
python3-venv python3 libpython-dev libpython3-dev cmake clang build-essential && \
|
apt-file \
|
||||||
apt-file update"
|
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
|
# node related
|
||||||
curl -RLSsf1 https://deb.nodesource.com/setup_10.x | bash -
|
curl -RLSsf1 https://deb.nodesource.com/setup_10.x | bash -
|
||||||
|
|
Loading…
Reference in a new issue