From 18fd281fa4e7e149221a910f7e4370858106dfb1 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Sun, 14 Apr 2024 09:27:57 +0200 Subject: [PATCH] Update update.sh --- update.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/update.sh b/update.sh index ad7a60a..1d686df 100755 --- a/update.sh +++ b/update.sh @@ -5,16 +5,16 @@ set -e printf -- '\033[33m Remove neovim if already installed\n\033[37m' sudo apt -y purge --auto-remove neovim -# Setup locals -printf -- '\033[33m Setup locals\n\033[37m' -sudo locale-gen "en_US.UTF-8" -sudo update-locale LANG=en_US.UTF-8 - # Install system packages printf -- '\033[33m Installing system packages\n\033[37m' sudo apt update && sudo apt -y upgrade sudo apt -y install ninja-build gettext cmake unzip curl python3 python3-pip python3-venv \ - build-essential libssl-dev libffi-dev python3-dev file tmux libudev-dev pkg-config + build-essential libssl-dev libffi-dev python3-dev file tmux libudev-dev pkg-config locales + +# Setup locals +printf -- '\033[33m Setup locals\n\033[37m' +sudo locale-gen "en_US.UTF-8" +sudo update-locale LANG=en_US.UTF-8 # Install fzf printf -- '\033[33m Installing fzf\n\033[37m'