From 90ef2f48b144ca619c660b062e16818ab0a43418 Mon Sep 17 00:00:00 2001 From: Ivan Popovych Date: Thu, 12 Jun 2025 14:48:51 +0300 Subject: [PATCH] guix-install.sh: Set shellcheck shell to bash. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * etc/guix-install.sh: Set shellcheck shell to bash. Change-Id: Ief28167f0e2b83c254026174e62959a32c34e29a Signed-off-by: Ludovic Courtès --- etc/guix-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/etc/guix-install.sh b/etc/guix-install.sh index 2944cb97f6a..68e96166a4c 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh @@ -51,6 +51,8 @@ # installation required the user to extract Guix packs under /gnu to # satisfy its dependencies. +# shellcheck shell=bash + # shellcheck disable=2268 # try to support vintage shells if [ "x$BASH_VERSION" = "x" ]; then exec bash "$0" "$@" @@ -510,7 +512,7 @@ sys_create_build_user() fi create_account guix-daemon guix-daemon \ - guix-daemon$KVMGROUP \ + guix-daemon"$KVMGROUP" \ "Unprivileged Guix Daemon User" # ‘tar xf’ creates root:root files. Change that.