From 7512b4b44f0cae73d01b97ca8eeca600bd2a0657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Tue, 30 Jun 2020 00:04:01 +0200 Subject: [PATCH] setup-bench-on-debian.sh: roll nginx into other apt-get line Not installing nginx means script is aborted because of "set -e", and that setting serves a purpose --- scripts/setup-bench-on-debian.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/setup-bench-on-debian.sh b/scripts/setup-bench-on-debian.sh index af71e05..e79fd50 100755 --- a/scripts/setup-bench-on-debian.sh +++ b/scripts/setup-bench-on-debian.sh @@ -13,8 +13,7 @@ then fi apt-get update && apt-get upgrade -y -apt-get install -y vim screen build-essential libz-dev cvs htop curl linux-perf cmake c++filt numactl git -apt-get install nginx # If you want to easily view flamegraphs +apt-get install -y vim screen build-essential libz-dev cvs htop curl linux-perf cmake c++filt numactl git nginx curl https://sh.rustup.rs -sSf | sh