Skip to content

Commit

Permalink
Don't use sudo in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardGomezEscandell committed Nov 30, 2023
1 parent 8086de9 commit f79d475
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions 2023/dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ set -eu

export DEBIAN_NONINTERACTIVE=1

sudo apt update -y
sudo apt install -y cmake g++-13 gcc-13
SUDO=$(which sudo) || true

$SUDO apt update -y
$SUDO apt install -y cmake g++-13 gcc-13

0 comments on commit f79d475

Please sign in to comment.