diff --git a/scripts/ci/compile-windows.sh b/scripts/ci/compile-windows.sh index e468dfd..b50d498 100755 --- a/scripts/ci/compile-windows.sh +++ b/scripts/ci/compile-windows.sh @@ -16,7 +16,12 @@ sed -i "s/^version:.*/version: ${VER}+1/" client/pubspec.yaml # Build Flutter Windows cd client +echo "==> pwd: $(pwd)" +echo "==> windows/ before create: $(test -d windows && echo EXISTS || echo MISSING)" flutter create --platforms=windows . --project-name jiu_client +echo "==> windows/ after create: $(test -d windows && echo EXISTS || echo MISSING)" +echo "==> windows/CMakeLists.txt: $(test -f windows/CMakeLists.txt && echo EXISTS || echo MISSING)" +ls windows/ 2>&1 || echo "(ls failed)" flutter build windows --release \ "--dart-define=BASE_URL=https://jiu.51yanmei.com" \ "--dart-define=PUBLIC_URL=https://jiu.51yanmei.com" \