From 975a0af096cea75ac21e4bed4d95afee94dc966f 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 3cb527a8..483fe651 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