From 1980652b5ed3547b2548eae58f8fd38b586167ba Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Fri, 23 Nov 2018 10:59:55 +0100 Subject: [PATCH] Reformatted the whole apt part --- bootstrap-root.sh | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/bootstrap-root.sh b/bootstrap-root.sh index 0fbafcf..e23baaa 100755 --- a/bootstrap-root.sh +++ b/bootstrap-root.sh @@ -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 -