We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae31f84 commit 40c565aCopy full SHA for 40c565a
scripts/utils.bat
@@ -18,7 +18,9 @@ REM ======================================================
18
19
:GetLibName
20
pushd %~dp0..
21
- for %%I in (.) do set %1=%%~nxI
+ powershell -Command "(Get-Content 'pyproject.toml' | Select-String '^name = ') -replace '^name = \"', '' -replace '\"$', ''" > _tmp_.txt
22
+ set /p %1=<_tmp_.txt
23
+ del _tmp_.txt
24
popd
25
goto:eof
26
0 commit comments