This commit is contained in:
Zhou Wang 2016-09-30 12:26:49 +02:00
Родитель 9bad39ecc3
Коммит f00eb56655
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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