From 2a4a4617ee44daff0568ae10e63e1b9a48810cd9 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 13 Sep 2024 15:31:42 +0200 Subject: [PATCH] Chain remaining commands --- scripts/Common/OS/install.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Common/OS/install.fish b/scripts/Common/OS/install.fish index 44e5dfd7..8bf7aa19 100755 --- a/scripts/Common/OS/install.fish +++ b/scripts/Common/OS/install.fish @@ -42,7 +42,7 @@ else source "$dir/users.fish" end - runHook installSoftware || begin + and runHook installSoftware || begin set -l script (getDeploymentScript) if [ -n "$script" ] @@ -50,5 +50,5 @@ else end end - runHook postInstall || true + and runHook postInstall || true end