We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbec7ca commit b02c1d5Copy full SHA for b02c1d5
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