From 8950c4170ba1937e533647038d2b06d7b137651d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Thu, 25 Aug 2022 23:22:06 +0530 Subject: [PATCH] ci: only wait for assets in server task [skip ci] --- .github/helper/install.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/helper/install.sh b/.github/helper/install.sh index 0375293a96..1514236ecb 100644 --- a/.github/helper/install.sh +++ b/.github/helper/install.sh @@ -83,5 +83,8 @@ then bench --site test_site_producer reinstall --yes fi -# wait till assets are built succesfully -wait $build_pid +if [ "$TYPE" == "server" ] +then + # wait till assets are built succesfully + wait $build_pid +fi