remove V2 python from drop
This commit is contained in:
Родитель
9bad39ecc3
Коммит
f00eb56655
|
@ -149,6 +149,7 @@ mkdir -p $baseBinariesPath
|
|||
echo "Copying build binaries..." >&3
|
||||
cp -r $buildPath/* $baseBinariesPath
|
||||
# Remove unnessesary file(s) if exist(s)
|
||||
rm -rf $baseBinariesPath/python
|
||||
rm -f $baseBinariesPath/bin/brainscripttests
|
||||
rm -f $baseBinariesPath/bin/cppevalclient
|
||||
rm -f $baseBinariesPath/bin/evaltests
|
||||
|
|
|
@ -76,6 +76,10 @@ Remove-Item $baseDropPath\cntk\*.lib -exclude EvalDll.lib
|
|||
Remove-Item $baseDropPath\cntk\*.exp
|
||||
Remove-Item $baseDropPath\cntk\*.metagen
|
||||
# Remove specific items
|
||||
If (Test-Path $baseDropPath\cntk\Python)
|
||||
{
|
||||
Remove-Item $baseDropPath\cntk\Python -Recurse
|
||||
}
|
||||
If (Test-Path $baseDropPath\cntk\CNTKLibrary-2.0.dll)
|
||||
{
|
||||
Remove-Item $baseDropPath\cntk\CNTKLibrary-2.0.dll
|
||||
|
|
Загрузка…
Ссылка в новой задаче