Skip to content

Commit

Permalink
build.sh: add some diagnostic output
Browse files Browse the repository at this point in the history
As I was testing, I found it useful to see when I was using the ext/
directory or not.
  • Loading branch information
jordigh committed Jun 19, 2024
1 parent 7cbb9de commit 12d4d61
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions buildtools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 12d4d61

Please sign in to comment.