From 3216d917ed9c79e9e75ac9248132aa928799d01a Mon Sep 17 00:00:00 2001 From: zboris12 Date: Sun, 24 Mar 2024 20:51:44 +0900 Subject: [PATCH] Added to show build result after github-actions. Again. --- build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 819ed8d..4e1e7bb 100755 --- a/build.sh +++ b/build.sh @@ -38,8 +38,11 @@ zgapdfsigner.js zgaindex.js EOF npx google-closure-compiler ${GCCOPT} ${GCCEXT} ${jss} --js_output_file ${OUTFLDR}/zgapdfsigner.min.js -if [ $? -ne 0 ] +if [ $? -eq 0 ] then + echo "Build result:" + ls -l ${OUTFLDR}/*.min.js +else echo "google-closure-compiler failed." exit 20 fi