Fixed rm in Scripts copy
This commit is contained in:
Родитель
fbd39b1a3d
Коммит
1a9ff644f0
|
@ -151,8 +151,10 @@ cp -r Examples $baseDropPath
|
|||
# Copy Scripts (Scripts folder from the root of the Repo)
|
||||
echo "Copying Scripts..." >&3
|
||||
cp -r Scripts $baseDropPath
|
||||
# Remove test related file(s)
|
||||
rm $baseDropPath/Scripts/pytest.ini 2> /dev/null
|
||||
# Remove test related file(s) if exist(s)
|
||||
set +e
|
||||
rm $baseDropPath/Scripts/pytest.ini
|
||||
set -e
|
||||
|
||||
# Copy Extras
|
||||
echo "Copying Extras..." >&3
|
||||
|
|
Загрузка…
Ссылка в новой задаче