updated build system
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2025-02-27 14:52:03 -06:00
parent ed5f1f04ad
commit 7dc2ce8702
3 changed files with 8 additions and 5 deletions

View File

@ -101,13 +101,13 @@ if [ -f "${PROJECT_SOURCE_DIR}/web/${PROJECT_NAME}/pubspec.yaml" ]; then
docker exec \
${FLUTTER_CONTAINER_NAME} \
/bin/bash -c \
"flutter build web" || exit 1
"flutter build web --base-href=${PROJECT_FLUTTER_BASE_HREF}" || exit 1
docker stop ${FLUTTER_CONTAINER_NAME}
docker rm ${FLUTTER_CONTAINER_NAME}
else
pushd "${PROJECT_SOURCE_DIR}/web/${PROJECT_NAME}"
flutter build web || exit 1
flutter build web --base-href=${PROJECT_FLUTTER_BASE_HREF} || exit 1
popd
fi