From 833ec48568ba9edbe9f58215dabe986516101167 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 11 Mar 2019 19:44:22 +0100 Subject: [PATCH] Fix deployment dialog not passing variables on --- .config/bootstrap/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/bootstrap/install.sh b/.config/bootstrap/install.sh index 1a2305b..70ad1ea 100644 --- a/.config/bootstrap/install.sh +++ b/.config/bootstrap/install.sh @@ -203,7 +203,9 @@ getuserandpass || error "User exited." usercheck || error "User exited." # Let user select groups of packages to pre-install. -[ -z "$targetdeployment" ] && $(deploydialog || error "User exited.") +if [ -z "$targetdeployment" ]; then + deploydialog || error "User exited." +fi # Last chance for user to back out before install. preinstallmsg || error "User exited."