why cannot find dll

This commit is contained in:
Dengke Tang
2023-02-23 15:45:05 -08:00
parent 2aae069734
commit 8455b69763
2 changed files with 13 additions and 4 deletions
+10 -1
View File
@@ -14,10 +14,19 @@ if "%composer_dir%"=="" (
set "work_dir=%script_dir%/.."
cd %work_dir%
echo %work_dir%
ls
ls x64\Release
php -c php-win.ini %composer_dir% update
if %errorlevel% neq 0 (
echo An error occurred while using composer to get dependence
exit /b %errorlevel%
)
php -c php-win.ini vendor/bin/phpunit tests --debug
if %errorlevel% neq 0 (
echo An error occurred while running unittests
exit /b %errorlevel%
)
)
endlocal