Changed rm to rm -r in Scripts cleanup

This commit is contained in:
Alexey Orlov 2016-07-07 09:17:08 +02:00
Родитель 1a9ff644f0
Коммит 15487535d9
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -152,9 +152,8 @@ cp -r Examples $baseDropPath
echo "Copying Scripts..." >&3
cp -r Scripts $baseDropPath
# Remove test related file(s) if exist(s)
set +e
rm $baseDropPath/Scripts/pytest.ini
set -e
rm -f $baseDropPath/Scripts/pytest.ini
# Copy Extras
echo "Copying Extras..." >&3