From 9425fafb81ae9b4d7135ce5ddad3d8834ce6184d Mon Sep 17 00:00:00 2001 From: Keaton Sentak Date: Tue, 13 Aug 2024 10:23:29 -0400 Subject: [PATCH] uncomment discovery source code generation task --- .github/workflows/utils.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/utils.sh b/.github/workflows/utils.sh index d3182279d..992fa969d 100755 --- a/.github/workflows/utils.sh +++ b/.github/workflows/utils.sh @@ -189,17 +189,17 @@ function generateSource() { exit 1 fi - # echo "Generate source for Discovery SDK" - # cd ../discovery - # npm run cpp - - # if [ $? -eq 0 ] - # then - # echo "Native Discovery SDK generated successfully" - # else - # echo "Native Discovery SDK generation failed" - # exit 1 - # fi + echo "Generate source for Discovery SDK" + cd ../discovery + npm run cpp + + if [ $? -eq 0 ] + then + echo "Native Discovery SDK generated successfully" + else + echo "Native Discovery SDK generation failed" + exit 1 + fi } function cloneAndInstallThunder() {