--- trunk/scripts/build-extensions.sh 2024/08/30 10:10:15 623 +++ trunk/scripts/build-extensions.sh 2024/08/30 10:10:33 624 @@ -1,12 +1,18 @@ #!/bin/bash -extensions=$(find . -maxdepth 1 -type d -not -name . -not -name .git -not -name .extbuild -not -name .extbuilds) +dir="." + +if [ ! -z "$1" ]; then + dir="$1" +fi + +extensions=$(find $dir -maxdepth 1 -type d -not -wholename $dir -not -name . -not -name .git -not -name .extbuild -not -name .extbuilds) failed_builds=() extbuilds_final_dir=$(pwd)/.extbuilds for extension in $extensions; do name=$(basename $extension) - echo "BUILD $name" + echo "PROCESS $name" cd $extension echo "PWD $(pwd)" @@ -25,10 +31,20 @@ npm install -D + if [ -z "$BUN" ] || [ "$BUN" != "1" ]; then + echo "PREPARE $name" + rm -f "tsconfig.json" + ln -s "tsconfig.node.json" "tsconfig.json" + else + echo "Bun extension build with this script is not supported yet" + continue + fi + if [ $? -eq 0 ]; then if [ -z "$build_command" ] || test "$build_command" = "null"; then echo "NOBUILD $name" else + echo "BUILD $name" eval $build_command if [ $? -ne 0 ]; then