From 9fd29eb32f1c6ffe72914b4455271fc159fa7a6f Mon Sep 17 00:00:00 2001 From: Recolic Keghart <root@recolic.net> Date: Thu, 25 Aug 2022 00:37:03 +0800 Subject: [PATCH] bugfix --- l1-quickinstall.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/l1-quickinstall.sh b/l1-quickinstall.sh index c29adb1..252abf1 100755 --- a/l1-quickinstall.sh +++ b/l1-quickinstall.sh @@ -2,11 +2,10 @@ function i () { cd "$1" && - makepkg -i && - cd - + makepkg -i } -i libsdbus-c++0 -i msft-identity-broker -i msalsdk-dbusclient +( i libsdbus-c++0 ) +( i msft-identity-broker ) +( i msalsdk-dbusclient ) -- GitLab