From 3b3aa8a86e922b2f5409da86ca0753f3a048837c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jordi=20Guti=C3=A9rrez=20Hermoso?= Date: Wed, 19 Jun 2024 12:17:48 -0400 Subject: [PATCH] build.sh: add some diagnostic output As I was testing, I found it useful to see when I was using the ext/ directory or not. --- buildtools/build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildtools/build.sh b/buildtools/build.sh index c87643a6..4c66a345 100755 --- a/buildtools/build.sh +++ b/buildtools/build.sh @@ -5,7 +5,11 @@ set -e PROJECT="" if [[ -e ext/app ]]; then PROJECT="tsconfig-ext.json" + echo "Using extra app directory" +else + echo "No extra app directory found" fi + WEBPACK_CONFIG=buildtools/webpack.config.js if [[ -e ext/buildtools/webpack.config.js ]]; then # Allow webpack config file to be replaced (useful