From 45b7593b79082ee7f7ddf3b10235e610cb259b01 Mon Sep 17 00:00:00 2001 From: 89luca89 Date: Sun, 19 Dec 2021 22:55:25 +0100 Subject: [PATCH] init: fix shellcheck warning --- distrobox-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrobox-init b/distrobox-init index 0b30fe2a69..6f39d46e68 100755 --- a/distrobox-init +++ b/distrobox-init @@ -295,7 +295,7 @@ if ! id "${container_user_name}"; then if ! useradd \ --home-dir "${container_user_home}" \ --no-create-home \ - --shell ${SHELL} \ + --shell "${SHELL}" \ --uid "${container_user_uid}" \ --gid "${container_user_gid}" \ "${container_user_name}"; then