From 0c97b0f4b07f78bf0d3df6d115db97a718e42b99 Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Mon, 20 Mar 2023 16:32:30 +0100 Subject: [PATCH] ubuntu: usermod -aG instead of -a -G It's well documented everywhere that this command does and it's commonly used with exactly these two parameters together and in that order. --- Tools/setup/ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/setup/ubuntu.sh b/Tools/setup/ubuntu.sh index a6bdf9b780..f509ced4eb 100755 --- a/Tools/setup/ubuntu.sh +++ b/Tools/setup/ubuntu.sh @@ -155,7 +155,7 @@ if [[ $INSTALL_NUTTX == "true" ]]; then if [ -n "$USER" ]; then # add user to dialout group (serial port access) - sudo usermod -a -G dialout $USER + sudo usermod -aG dialout $USER fi # arm-none-eabi-gcc